@charset "UTF-8";


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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: #f3f0e8;
    color: #0b0d0f;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

body.menu_open {
    overflow: hidden;
}

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

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

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

::selection {
    background: #ff5a1f;
    color: #0b0d0f;
}

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

.skip_link:focus {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 9999;
    width: auto;
    height: auto;
    padding: 12px 16px;
    margin: 0;
    overflow: visible;
    clip: auto;
    background: #ffffff;
    color: #0b0d0f;
}

.shell {
    width: min(100% - 48px, 1440px);
    margin-inline: auto;
}

.section {
    padding: 124px 0;
}

.section_dark {
    background: #0b0d0f;
    color: #f3f0e8;
}

.eyebrow {
    margin: 0 0 18px;
    color: #6d6a63;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow_light {
    color: #9a978f;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    background: #0b0d0f;
    color: #f3f0e8;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button_small {
    min-height: 40px;
    padding: 10px 16px;
    background: #ff5a1f;
    color: #0b0d0f;
}

.button_large {
    min-height: 56px;
    padding: 16px 24px;
}

.button_orange {
    background: #ff5a1f;
    color: #0b0d0f;
}

.button_orange:hover {
    background: #ff7546;
}

.button_light {
    background: #f3f0e8;
    color: #0b0d0f;
}

.text_link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 750;
}

.text_link span {
    color: #ff5a1f;
}

.text_link_light {
    color: #f3f0e8;
}

[data_reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 680ms ease, transform 680ms ease;
}

[data_reveal].is_visible {
    opacity: 1;
    transform: translateY(0);
}

.site_header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(243, 240, 232, 0.12);
    color: #f3f0e8;
    transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site_header.is_scrolled {
    background: rgba(11, 13, 15, 0.88);
    border-color: rgba(243, 240, 232, 0.08);
    backdrop-filter: blur(18px);
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 24px;
}

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

.brand_mark {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(243, 240, 232, 0.28);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.brand_name {
    display: grid;
    gap: 2px;
}

.brand_name strong {
    font-size: 14px;
    letter-spacing: -0.02em;
}

.brand_name span {
    color: #9a978f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.03em;
}

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

.primary_nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav_list,
.footer_links {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav_list a {
    color: #c3c0b8;
    font-size: 13px;
    font-weight: 650;
    transition: color 160ms ease;
}

.nav_list a:hover {
    color: #ffffff;
}

.menu_toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 164px 0 48px;
}

.hero_grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.55) 65%, transparent 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 12%;
    right: -8%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: #ff5a1f;
    filter: blur(120px);
    opacity: 0.08;
}

.hero_inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.55fr);
    align-items: end;
    gap: 80px;
    min-height: calc(100vh - 270px);
}

.hero_copy {
    max-width: 930px;
}

.status_line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px;
    color: #a9a69f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5a1f;
    box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.12);
}

.hero h1 {
    max-width: 970px;
    margin: 0;
    font-size: clamp(64px, 8.4vw, 138px);
    line-height: 0.88;
    letter-spacing: -0.072em;
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    color: #ff5a1f;
}

.hero_lead {
    max-width: 760px;
    margin: 34px 0 0;
    color: #b9b6af;
    font-size: clamp(18px, 1.65vw, 25px);
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.hero_actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 42px;
}

.hero_panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 440px;
    padding: 26px;
    border: 1px solid rgba(243, 240, 232, 0.16);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(8px);
}

.panel_label {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #7e7b74;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.panel_statement p,
.panel_statement strong {
    display: block;
    margin: 0;
    font-size: clamp(31px, 3vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.panel_statement p {
    color: #77746d;
}

.panel_statement strong {
    color: #f3f0e8;
}

.panel_flow {
    display: grid;
    gap: 9px;
}

.panel_flow span {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel_flow i {
    display: block;
    width: 1px;
    height: 18px;
    margin-left: 2px;
    background: #ff5a1f;
}

.hero_bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 58px;
    padding-top: 22px;
    border-top: 1px solid rgba(243, 240, 232, 0.13);
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero_bottom p {
    margin: 0;
}

.scroll_hint {
    color: #ff5a1f;
}

.section_intro {
    padding-bottom: 84px;
}

.intro_grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
}

.intro_copy {
    max-width: 1040px;
}

.intro_copy h2,
.section_head h2,
.services_intro h2,
.process_header h2,
.about_copy h2 {
    margin: 0;
    font-size: clamp(42px, 5.3vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.057em;
    text-wrap: balance;
}

.intro_copy p {
    max-width: 800px;
    margin: 34px 0 0;
    color: #56534d;
    font-size: 21px;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.section_work {
    padding-top: 58px;
}

.section_head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 54px;
}

.section_head > div {
    max-width: 960px;
}

.work_grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 34px 24px;
}

.work_card {
    grid-column: span 4;
}

.work_card_featured {
    grid-column: span 6;
}

.work_card_featured + .work_card {
    grid-column: span 6;
}

.work_card_featured + .work_card + .work_card {
    grid-column: 4 / span 6;
    margin-top: 34px;
}

.work_media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #15181a;
}

.work_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.work_card:hover .work_media img {
    transform: scale(1.035);
}

.work_index {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: #ff5a1f;
    color: #0b0d0f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    font-weight: 800;
}

.work_copy {
    padding-top: 20px;
}

.work_meta {
    margin: 0 0 10px;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work_copy h3,
.work_copy h2 {
    margin: 0;
    font-size: clamp(27px, 2.4vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.work_copy p {
    max-width: 600px;
    margin: 14px 0 0;
    color: #5f5b55;
    font-size: 16px;
    line-height: 1.6;
}

.abstract_media {
    padding: 28px;
}

.abstract_media_portrait {
    display: flex;
    align-items: end;
    background:
        linear-gradient(135deg, rgba(255, 90, 31, 0.1), transparent 45%),
        #16191c;
}

.abstract_media_portrait::before {
    content: "";
    position: absolute;
    inset: 12% 13%;
    border: 1px solid rgba(243, 240, 232, 0.18);
    border-radius: 52% 48% 46% 54%;
    transform: rotate(-8deg);
}

.abstract_media_portrait::after {
    content: "";
    position: absolute;
    left: 28%;
    top: 18%;
    width: 36%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ff5a1f;
    opacity: 0.84;
}

.abstract_word {
    position: relative;
    z-index: 2;
    color: #f3f0e8;
    font-size: clamp(38px, 6vw, 88px);
    font-weight: 900;
    letter-spacing: -0.07em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.abstract_media_system {
    display: grid;
    place-items: center;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        #111315;
    background-size: 36px 36px;
}

.system_stack {
    display: grid;
    width: 72%;
    gap: 8px;
    transform: rotate(-7deg);
}

.system_stack i {
    display: block;
    padding: 16px 18px;
    border: 1px solid rgba(243, 240, 232, 0.18);
    background: #171a1d;
    color: #f3f0e8;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.system_stack i:nth-child(2) {
    transform: translateX(6%);
}

.system_stack i:nth-child(3) {
    transform: translateX(12%);
    background: #ff5a1f;
    color: #0b0d0f;
}

.system_stack i:nth-child(4) {
    transform: translateX(18%);
}

.section_services {
    margin-top: 124px;
}

.services_intro {
    display: grid;
    grid-template-columns: 1.25fr 2fr;
    gap: 40px;
    align-items: end;
    padding-bottom: 72px;
}

.services_intro h2 {
    grid-column: 2;
}

.services_intro > p:last-child {
    grid-column: 2;
    max-width: 620px;
    margin: 18px 0 0;
    color: #99968f;
    font-size: 18px;
}

.service_list {
    border-top: 1px solid rgba(243, 240, 232, 0.15);
}

.service_row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 38px 0;
    border-bottom: 1px solid rgba(243, 240, 232, 0.15);
}

.service_number {
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
}

.service_row h3 {
    margin: 0;
    font-size: clamp(34px, 4.4vw, 70px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.service_row p {
    max-width: 720px;
    margin: 12px 0 0;
    color: #9d9a93;
    font-size: 17px;
}

.service_arrow {
    color: #ff5a1f;
    font-size: 32px;
}

.process_header {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    margin-bottom: 64px;
}

.process_header h2 {
    max-width: 980px;
}

.process_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #c9c4b9;
    border-left: 1px solid #c9c4b9;
}

.process_step {
    min-height: 330px;
    padding: 28px;
    border-right: 1px solid #c9c4b9;
    border-bottom: 1px solid #c9c4b9;
}

.process_step > span {
    display: block;
    margin-bottom: 116px;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
}

.process_step h3 {
    margin: 0;
    font-size: 31px;
    letter-spacing: -0.04em;
}

.process_step p {
    margin: 12px 0 0;
    color: #625f59;
    line-height: 1.6;
}

.process_step_accent {
    background: #ff5a1f;
}

.process_step_accent > span,
.process_step_accent p {
    color: #0b0d0f;
}

.section_about {
    padding-top: 54px;
}

.about_grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: stretch;
}

.about_visual {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    background:
        radial-gradient(circle at 65% 20%, rgba(255, 90, 31, 0.36), transparent 28%),
        linear-gradient(145deg, #171a1d, #0b0d0f);
}

.about_visual::after {
    content: "";
    position: absolute;
    inset: 18% -8% auto auto;
    width: 72%;
    aspect-ratio: 1;
    border: 1px solid rgba(243, 240, 232, 0.22);
    border-radius: 50%;
}

.about_monogram {
    position: absolute;
    left: 7%;
    bottom: 3%;
    color: #f3f0e8;
    font-size: clamp(150px, 22vw, 350px);
    font-weight: 950;
    line-height: 0.75;
    letter-spacing: -0.12em;
}

.about_tags {
    position: absolute;
    top: 28px;
    right: 28px;
    display: grid;
    gap: 8px;
}

.about_tags span {
    padding: 7px 10px;
    border: 1px solid rgba(243, 240, 232, 0.22);
    color: #f3f0e8;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
}

.about_copy {
    padding: 38px 0;
}

.about_lead {
    max-width: 760px;
    margin: 34px 0 0;
    color: #57544e;
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.about_facts {
    margin: 46px 0 38px;
    border-top: 1px solid #c9c4b9;
}

.about_facts div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid #c9c4b9;
}

.about_facts span {
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about_facts strong {
    font-size: 15px;
}

.site_footer {
    padding: 96px 0 28px;
    background: #ff5a1f;
    color: #0b0d0f;
}

.footer_grid {
    display: grid;
    grid-template-columns: 1.65fr 0.35fr;
    gap: 56px;
    align-items: end;
}

.footer_statement {
    max-width: 1040px;
}

.footer_statement .eyebrow {
    color: #0b0d0f;
}

.footer_statement h2 {
    margin: 0;
    font-size: clamp(56px, 7.6vw, 118px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.footer_statement p:last-child {
    max-width: 700px;
    margin: 30px 0 0;
    font-size: 19px;
    line-height: 1.55;
}

.footer_action {
    display: grid;
    justify-items: start;
    gap: 16px;
}

.footer_meta {
    margin: 0;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer_bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 32px;
    margin-top: 94px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 13, 15, 0.28);
}

.footer_brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand_mark_footer {
    width: 38px;
    height: 38px;
    border-color: rgba(11, 13, 15, 0.45);
}

.footer_links {
    font-size: 12px;
}

.footer_copyright {
    margin: 0;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
}

.content_page {
    min-height: 70vh;
    padding: 170px 0 110px;
}

.content_shell {
    max-width: 1180px;
}

.content_header {
    margin-bottom: 56px;
}

.content_header h1,
.case_hero h1,
.error_inner h1 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(58px, 7vw, 108px);
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.prose {
    max-width: 820px;
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.75;
}

.prose h2,
.prose h3 {
    margin-top: 2em;
    letter-spacing: -0.04em;
}

.prose a {
    border-bottom: 1px solid #ff5a1f;
}

.single_hero,
.case_featured {
    margin-bottom: 64px;
}

.single_hero img,
.case_featured img {
    width: 100%;
}

.case_hero {
    padding: 180px 0 94px;
}

.case_hero_grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
}

.case_intro {
    max-width: 760px;
    margin: 28px 0 0;
    color: #aaa7a0;
    font-size: 21px;
}

.case_index {
    margin: 0;
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
}

.case_featured {
    margin-top: 72px;
}

.case_content {
    padding: 42px 0 110px;
}

.post_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 28px;
}

.post_card h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: -0.04em;
}

.post_media {
    display: block;
    margin-bottom: 22px;
}

.error_page {
    display: grid;
    min-height: 80vh;
    align-items: center;
    padding: 150px 0 90px;
}

.error_inner p:not(.eyebrow) {
    max-width: 620px;
    color: #a7a49d;
    font-size: 20px;
}

.error_inner .button {
    margin-top: 24px;
}

@media (max-width: 1120px) {
    .hero_inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hero_panel {
        min-height: 320px;
    }

    .intro_grid,
    .process_header {
        grid-template-columns: 1fr;
    }

    .work_card,
    .work_card_featured,
    .work_card_featured + .work_card,
    .work_card_featured + .work_card + .work_card {
        grid-column: span 6;
        margin-top: 0;
    }

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

    .services_intro h2,
    .services_intro > p:last-child {
        grid-column: auto;
    }

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

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

    .about_visual {
        min-height: 520px;
    }

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

@media (max-width: 860px) {
    .shell {
        width: min(100% - 32px, 1440px);
    }

    .section {
        padding: 90px 0;
    }

    .brand_name {
        display: none;
    }

    .menu_toggle {
        position: relative;
        z-index: 1002;
        display: grid;
        width: 46px;
        height: 46px;
        padding: 13px;
        border: 1px solid rgba(243, 240, 232, 0.2);
        background: transparent;
    }

    .menu_toggle span:not(.screen_reader_text) {
        display: block;
        width: 100%;
        height: 1px;
        background: #f3f0e8;
    }

    .primary_nav {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: 100px 32px 44px;
        background: #0b0d0f;
        transform: translateX(100%);
        transition: transform 300ms ease;
    }

    .primary_nav.is_open {
        transform: translateX(0);
    }

    .nav_list {
        display: grid;
        gap: 4px;
    }

    .nav_list a {
        display: block;
        padding: 9px 0;
        color: #f3f0e8;
        font-size: 38px;
        letter-spacing: -0.05em;
    }

    .primary_nav .button {
        margin-top: 28px;
    }

    .hero {
        padding-top: 138px;
    }

    .hero_inner {
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(60px, 15vw, 104px);
    }

    .hero_lead {
        font-size: 18px;
    }

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

    .hero_bottom {
        margin-top: 44px;
    }

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

    .work_card,
    .work_card_featured,
    .work_card_featured + .work_card,
    .work_card_featured + .work_card + .work_card {
        grid-column: 1 / -1;
    }

    .service_row {
        grid-template-columns: 52px 1fr;
    }

    .service_arrow {
        display: none;
    }

    .footer_bottom {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

@media (max-width: 620px) {
    .shell {
        width: min(100% - 24px, 1440px);
    }

    .header_inner {
        min-height: 72px;
    }

    .brand_mark {
        width: 42px;
        height: 42px;
    }

    .hero {
        min-height: auto;
        padding: 124px 0 28px;
    }

    .hero h1 {
        font-size: clamp(54px, 18vw, 84px);
    }

    .hero_panel {
        min-height: 290px;
        padding: 20px;
    }

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

    .intro_copy h2,
    .section_head h2,
    .services_intro h2,
    .process_header h2,
    .about_copy h2 {
        font-size: clamp(40px, 13vw, 62px);
    }

    .intro_copy p,
    .about_lead {
        font-size: 18px;
    }

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

    .process_step {
        min-height: auto;
    }

    .process_step > span {
        margin-bottom: 72px;
    }

    .about_visual {
        min-height: 430px;
    }

    .about_facts div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .footer_statement h2 {
        font-size: clamp(52px, 16vw, 82px);
    }

    .footer_links {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

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

    .content_page {
        padding-top: 130px;
    }
}

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

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

    [data_reveal] {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   CORE MODULES
   Video, Story, Cases, Offers, Journal, Contact
   ========================================================= */

:root {
    --nw-graphit: #0b0d0f;
    --nw-offwhite: #f3f0e8;
    --nw-stone: #b8b3a8;
    --nw-orange: #ff5a1f;
    --nw-blue: #24374a;
    --nw-line-dark: rgba(11, 13, 15, 0.18);
    --nw-line-light: rgba(243, 240, 232, 0.15);
}

.hero_v2 {
    position: relative;
    min-height: 100svh;
    isolation: isolate;
}

.hero_v2::before {
    z-index: 0;
    animation: nwGlowDrift 10s ease-in-out infinite alternate;
}

.hero_media {
    position: absolute;
    inset: 0 0 0 44%;
    z-index: 0;
    overflow: hidden;
    background: #101315;
}

.hero_video,
.hero_media_placeholder {
    width: 100%;
    height: 100%;
}

.hero_video {
    object-fit: cover;
    filter: saturate(0.82) contrast(1.05) brightness(0.78);
}

.hero_media_fade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--nw-graphit) 0%, rgba(11, 13, 15, 0.96) 12%, rgba(11, 13, 15, 0.58) 42%, rgba(11, 13, 15, 0.12) 74%, rgba(11, 13, 15, 0.2) 100%),
        linear-gradient(0deg, rgba(11, 13, 15, 0.76) 0%, transparent 34%, transparent 72%, rgba(11, 13, 15, 0.4) 100%);
    pointer-events: none;
}

.hero_media_placeholder {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 60% 42%, rgba(255, 90, 31, 0.14), transparent 32%),
        #111416;
    background-size: 70px 70px, 70px 70px, auto, auto;
    color: var(--nw-offwhite);
}

.hero_media_placeholder strong {
    position: relative;
    z-index: 3;
    font-size: clamp(28px, 3vw, 52px);
    letter-spacing: -0.05em;
}

.hero_media_placeholder p {
    position: relative;
    z-index: 3;
    max-width: 390px;
    margin: 0;
    color: #9d9a93;
    text-align: center;
}

.video_slot_label {
    position: relative;
    z-index: 3;
    color: var(--nw-orange);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
}

.hero_orbit {
    position: absolute;
    border: 1px solid rgba(243, 240, 232, 0.14);
    border-radius: 50%;
    animation: nwOrbit 12s linear infinite;
}

.hero_orbit_one {
    width: 42vw;
    max-width: 640px;
    aspect-ratio: 1;
}

.hero_orbit_two {
    width: 31vw;
    max-width: 470px;
    aspect-ratio: 1;
    border-color: rgba(255, 90, 31, 0.38);
    animation-direction: reverse;
    animation-duration: 8s;
}

.hero_orbit_three {
    width: 18vw;
    max-width: 280px;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.24), rgba(255, 90, 31, 0.02) 60%, transparent 62%);
}

.video_toggle {
    position: absolute;
    right: 22px;
    bottom: 26px;
    z-index: 4;
    min-width: 72px;
    padding: 9px 12px;
    border: 1px solid rgba(243, 240, 232, 0.32);
    background: rgba(11, 13, 15, 0.7);
    color: var(--nw-offwhite);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero_inner_v2 {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    align-items: center;
}

.hero_copy_v2 {
    max-width: 970px;
}

.hero_copy_v2 h1 {
    max-width: 1040px;
    font-size: clamp(68px, 8.8vw, 146px);
}

.hero_copy_v2 .hero_lead {
    max-width: 700px;
}

.value_strip {
    border-top: 1px solid var(--nw-line-dark);
    border-bottom: 1px solid var(--nw-line-dark);
    background: #e8e4da;
}

.value_strip_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 64px;
    color: #4f4c46;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.value_strip_inner i {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--nw-orange);
    box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.1);
}

.production_story {
    position: relative;
    min-height: 320vh;
}

.story_shell {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
    gap: 70px;
    align-items: center;
    min-height: 100svh;
    padding-top: 110px;
    padding-bottom: 70px;
}

.story_copy h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(48px, 5.3vw, 84px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.story_copy > p:not(.eyebrow) {
    max-width: 650px;
    margin: 26px 0 0;
    color: #9a978f;
    font-size: 17px;
    line-height: 1.65;
}

.story_steps {
    margin-top: 46px;
    border-top: 1px solid var(--nw-line-light);
}

.story_step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--nw-line-light);
    opacity: 0.36;
    transition: opacity 240ms ease, transform 240ms ease;
}

.story_step.is_active {
    opacity: 1;
    transform: translateX(8px);
}

.story_step > span {
    color: var(--nw-orange);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
}

.story_step h3 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.035em;
}

.story_step p {
    margin: 5px 0 0;
    color: #8f8c85;
    font-size: 14px;
}

.story_stage {
    position: relative;
    min-height: min(68vh, 760px);
    overflow: hidden;
    border: 1px solid var(--nw-line-light);
    background: #0f1214;
}

.stage_grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at center, black, transparent 85%);
}

.camera_placeholder {
    position: absolute;
    left: 19%;
    top: 19%;
    width: 62%;
    aspect-ratio: 1.18;
    transform: rotate(-14deg);
    transition: transform 80ms linear;
    filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5));
}

.camera_body {
    position: absolute;
    inset: 23% 2% 17% 4%;
    border: 1px solid rgba(243, 240, 232, 0.26);
    border-radius: 18% 13% 16% 13%;
    background: linear-gradient(145deg, #25292d, #101214 70%);
    box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.025);
}

.camera_body::before {
    content: "";
    position: absolute;
    left: 11%;
    top: -21%;
    width: 42%;
    height: 29%;
    border: 1px solid rgba(243, 240, 232, 0.18);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    background: #181b1e;
}

.camera_lens {
    position: absolute;
    border-radius: 50%;
}

.camera_lens_outer {
    right: -1%;
    top: 20%;
    width: 48%;
    aspect-ratio: 1;
    border: 1px solid rgba(243, 240, 232, 0.34);
    background: radial-gradient(circle at 43% 39%, #31363a, #111416 56%, #090b0d 68%);
    box-shadow: 0 0 0 22px #15191c, 0 0 0 23px rgba(243, 240, 232, 0.12);
}

.camera_lens_inner {
    right: 7%;
    top: 28%;
    width: 32%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 90, 31, 0.42);
    background: radial-gradient(circle at 42% 38%, rgba(73, 116, 141, 0.58), #080a0c 58%, #15191b 60%);
}

.camera_glass {
    position: absolute;
    right: 16.5%;
    top: 38%;
    width: 13%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--nw-orange);
    opacity: 0.7;
    filter: blur(9px);
}

.stage_labels {
    position: absolute;
    left: 22px;
    top: 20px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    color: #66645f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
}

.story_progress {
    position: absolute;
    right: 18px;
    top: 72px;
    bottom: 72px;
    width: 2px;
    background: rgba(243, 240, 232, 0.1);
}

.story_progress i {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--nw-orange);
    transform: scaleY(0);
    transform-origin: top;
}

.asset_stack {
    position: absolute;
    right: 11%;
    bottom: 9%;
    display: grid;
    gap: 7px;
    width: 42%;
    opacity: 0;
}

.asset_stack span {
    display: block;
    padding: 12px 14px;
    border: 1px solid rgba(243, 240, 232, 0.17);
    background: rgba(17, 20, 22, 0.9);
    color: var(--nw-offwhite);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.asset_stack span:nth-child(2) { transform: translateX(7%); }
.asset_stack span:nth-child(3) { transform: translateX(14%); background: var(--nw-orange); color: var(--nw-graphit); }
.asset_stack span:nth-child(4) { transform: translateX(21%); }

.case_showcase {
    display: grid;
    gap: 86px;
}

.case_feature {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
    gap: 50px;
    align-items: end;
}

.case_feature:nth-child(even) {
    grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
}

.case_feature:nth-child(even) .case_media {
    order: 2;
}

.case_media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #141719;
}

.case_media img,
.case_media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case_media video {
    transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 500ms ease;
}

.case_feature:hover .case_media video,
.case_feature:hover .case_media img {
    transform: scale(1.025);
}

.case_play_hint {
    position: absolute;
    right: 18px;
    bottom: 18px;
    min-width: 58px;
    padding: 9px 11px;
    background: var(--nw-orange);
    color: var(--nw-graphit);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.case_copy {
    padding-bottom: 10px;
}

.case_audience {
    margin: 0 0 14px;
    color: var(--nw-orange);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.case_copy h3,
.case_copy h2 {
    margin: 0;
    font-size: clamp(38px, 4.1vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.058em;
}

.case_copy > p:not(.case_audience) {
    max-width: 590px;
    margin: 20px 0 24px;
    color: #5f5b55;
    font-size: 18px;
    line-height: 1.6;
}

.case_media_abstract {
    display: flex;
    align-items: flex-end;
    padding: 34px;
    color: var(--nw-offwhite);
}

.case_media_abstract strong {
    position: relative;
    z-index: 3;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 0.78;
    letter-spacing: -0.075em;
}

.case_media_agency {
    background:
        linear-gradient(135deg, rgba(255, 90, 31, 0.1), transparent 45%),
        #121517;
}

.agency_timeline {
    position: absolute;
    inset: 13% 10%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    align-items: center;
}

.agency_timeline i {
    height: 56%;
    border: 1px solid rgba(243, 240, 232, 0.12);
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
}

.agency_timeline i:nth-child(3) {
    height: 100%;
    background: var(--nw-orange);
}

.case_media_portrait {
    background: radial-gradient(circle at 66% 38%, rgba(255, 90, 31, 0.3), transparent 24%), #111416;
}

.portrait_orb {
    position: absolute;
    right: 13%;
    top: 14%;
    width: 46%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--nw-orange);
    opacity: 0.84;
}

.portrait_orb::before,
.portrait_orb::after {
    content: "";
    position: absolute;
    inset: -14%;
    border: 1px solid rgba(243, 240, 232, 0.16);
    border-radius: 48% 52% 55% 45%;
    transform: rotate(14deg);
}

.portrait_orb::after {
    inset: -30%;
    transform: rotate(-21deg);
}

.section_offers {
    margin-top: 124px;
}

.offers_head {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 36px;
    align-items: end;
    margin-bottom: 66px;
}

.offers_head h2 {
    grid-column: 2;
    margin: 0;
    font-size: clamp(48px, 5.8vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.offers_head > p:last-child {
    grid-column: 2;
    max-width: 690px;
    margin: 0;
    color: #9d9a93;
    font-size: 18px;
}

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

.offer_card {
    min-height: 590px;
    padding: 28px;
    border-right: 1px solid var(--nw-line-light);
    border-bottom: 1px solid var(--nw-line-light);
}

.offer_card_accent {
    background: var(--nw-orange);
    color: var(--nw-graphit);
}

.offer_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 110px;
    color: #7f7c75;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
}

.offer_card_accent .offer_top {
    color: rgba(11, 13, 15, 0.66);
}

.offer_card h3 {
    margin: 0;
    font-size: clamp(35px, 3.3vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.offer_card > p {
    margin: 20px 0 26px;
    color: #99968f;
    font-size: 16px;
    line-height: 1.62;
}

.offer_card_accent > p {
    color: rgba(11, 13, 15, 0.76);
}

.offer_card ul {
    display: grid;
    gap: 10px;
    min-height: 136px;
    padding: 0;
    margin: 0 0 34px;
    list-style: none;
}

.offer_card li {
    position: relative;
    padding-left: 18px;
    color: #d2cfc8;
    font-size: 14px;
}

.offer_card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.63em;
    width: 6px;
    height: 1px;
    background: var(--nw-orange);
}

.offer_card_accent li {
    color: rgba(11, 13, 15, 0.84);
}

.offer_card_accent li::before {
    background: var(--nw-graphit);
}

.section_journal {
    padding-bottom: 70px;
}

.journal_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 24px;
}

.journal_media {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 20px;
    background: #15181a;
}

.journal_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.journal_card:hover .journal_media img {
    transform: scale(1.035);
}

.journal_placeholder {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        #141719;
    background-size: 34px 34px;
    color: var(--nw-orange);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.journal_card h3,
.journal_card h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.journal_card > p:last-child,
.journal_card .wp-block-post-excerpt {
    margin: 14px 0 0;
    color: #625f59;
    line-height: 1.62;
}

.contact_section {
    padding: 112px 0;
    background: var(--nw-orange);
    color: var(--nw-graphit);
}

.contact_grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 80px;
    align-items: start;
}

.contact_intro {
    position: sticky;
    top: 130px;
}

.contact_intro .eyebrow {
    color: var(--nw-graphit);
}

.contact_intro h2 {
    margin: 0;
    font-size: clamp(58px, 7vw, 110px);
    line-height: 0.88;
    letter-spacing: -0.07em;
}

.contact_intro > p:not(.eyebrow) {
    max-width: 570px;
    margin: 28px 0 0;
    font-size: 19px;
    line-height: 1.6;
}

.contact_direct {
    display: grid;
    gap: 6px;
    margin-top: 44px;
}

.contact_direct span {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact_direct a {
    width: fit-content;
    border-bottom: 1px solid var(--nw-graphit);
    font-weight: 800;
}

.contact_form_wrap {
    padding: 38px;
    background: var(--nw-offwhite);
}

.contact_form {
    display: grid;
    gap: 20px;
}

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

.contact_form label {
    display: grid;
    gap: 8px;
}

.contact_form label > span {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #bdb8ac;
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--nw-graphit);
    padding: 12px 0;
}

.contact_form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {
    border-bottom-color: var(--nw-orange);
}

.contact_form .button {
    justify-self: start;
    margin-top: 8px;
}

.hp_field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form_notice {
    margin-bottom: 24px;
    padding: 15px 18px;
    font-weight: 700;
}

.form_notice_success {
    background: #d8efdd;
    color: #123c1e;
}

.form_notice_error {
    background: #f2dddd;
    color: #5a1919;
}

.site_footer {
    padding: 28px 0;
    background: var(--nw-graphit);
    color: var(--nw-offwhite);
}

.site_footer .footer_bottom {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.site_footer .brand_mark_footer {
    border-color: rgba(243, 240, 232, 0.3);
}

.journal_page,
.article_page {
    min-height: 70vh;
}

.journal_hero,
.article_hero {
    padding: 180px 0 94px;
}

.journal_hero h1,
.article_hero h1 {
    max-width: 1180px;
    margin: 0;
    font-size: clamp(62px, 7.8vw, 126px);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.journal_hero > .shell > p:last-child,
.article_hero_inner > p:last-child {
    max-width: 760px;
    margin: 28px 0 0;
    color: #aaa7a0;
    font-size: 20px;
}

.journal_archive {
    padding-top: 94px;
    padding-bottom: 110px;
}

.article_featured,
.case_video_full,
.case_featured {
    margin-top: 72px;
}

.article_featured img,
.case_video_full video {
    width: 100%;
}

.article_content,
.case_content {
    padding-top: 70px;
    padding-bottom: 110px;
}

.case_facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    border-top: 1px solid var(--nw-line-dark);
    border-left: 1px solid var(--nw-line-dark);
}

.case_facts div {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-right: 1px solid var(--nw-line-dark);
    border-bottom: 1px solid var(--nw-line-dark);
}

.case_facts span {
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case_facts strong {
    font-size: 14px;
    line-height: 1.5;
}

@keyframes nwGlowDrift {
    from { transform: translate3d(-2%, -2%, 0) scale(0.95); }
    to { transform: translate3d(4%, 5%, 0) scale(1.08); }
}

@keyframes nwOrbit {
    from { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.06); }
    to { transform: rotate(360deg) scale(1); }
}

@media (max-width: 1120px) {
    .hero_media {
        inset: 0 0 0 34%;
    }

    .story_shell {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

    .case_feature,
    .case_feature:nth-child(even) {
        grid-template-columns: 1fr 1fr;
    }

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

    .offer_card {
        min-height: 0;
    }

    .offer_top {
        margin-bottom: 70px;
    }

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

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

    .contact_intro {
        position: static;
    }
}

@media (max-width: 860px) {
    .hero_media {
        inset: 0;
        opacity: 0.7;
    }

    .hero_media_fade {
        background: linear-gradient(0deg, rgba(11, 13, 15, 0.92) 0%, rgba(11, 13, 15, 0.66) 64%, rgba(11, 13, 15, 0.5) 100%);
    }

    .hero_copy_v2 h1 {
        font-size: clamp(58px, 15.4vw, 108px);
    }

    .value_strip_inner {
        justify-content: flex-start;
        overflow-x: auto;
        min-height: 56px;
        white-space: nowrap;
    }

    .production_story {
        min-height: auto;
        padding: 90px 0;
    }

    .story_shell {
        position: static;
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .story_stage {
        min-height: 560px;
    }

    .case_feature,
    .case_feature:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .case_feature:nth-child(even) .case_media {
        order: 0;
    }

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

    .offers_head h2,
    .offers_head > p:last-child {
        grid-column: auto;
    }

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

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

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

@media (max-width: 620px) {
    .hero_media_placeholder strong {
        font-size: 28px;
    }

    .hero_orbit_one {
        width: 86vw;
    }

    .hero_orbit_two {
        width: 66vw;
    }

    .hero_orbit_three {
        width: 42vw;
    }

    .story_stage {
        min-height: 450px;
    }

    .camera_placeholder {
        left: 8%;
        top: 20%;
        width: 82%;
    }

    .asset_stack {
        right: 13%;
        width: 64%;
    }

    .case_copy h3,
    .case_copy h2 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .case_media_abstract strong {
        font-size: clamp(42px, 15vw, 72px);
    }

    .offer_card {
        padding: 24px;
    }

    .contact_form_wrap {
        padding: 24px;
    }

    .contact_intro h2 {
        font-size: clamp(54px, 18vw, 84px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .hero_v2::before,
    .hero_orbit {
        animation: none !important;
    }

    .camera_placeholder,
    .asset_stack,
    .story_progress i {
        transition: none !important;
    }
}

/* ==========================================================
   POSITIONING AND CAPABILITY MODULES
   Video hero and commercial capability areas
   ========================================================== */

:root {
    --nw-graphit: #0b0d0f;
    --nw-offwhite: #f3f0e8;
    --nw-stone: #b8b3a8;
    --nw-orange: #ff5a1f;
    --nw-line-dark: rgba(11, 13, 15, 0.18);
    --nw-line-light: rgba(243, 240, 232, 0.16);
}

.v3_brand {
    gap: 12px;
}

.v3_brand_mark {
    width: 58px;
    height: 34px;
    object-fit: contain;
    object-position: left center;
}

.site_header.is_scrolled .v3_brand_mark {
    filter: none;
}

.v3_hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    padding: 150px 0 34px;
}

.v3_hero_media,
.v3_hero_scrim,
.v3_hero_grid,
.v3_hero_placeholder {
    position: absolute;
    inset: 0;
}

.v3_hero_media {
    z-index: 0;
    background: #090b0d;
}

.v3_hero_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.68;
    filter: saturate(0.84) contrast(1.07);
}

.v3_hero_scrim {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(7, 9, 11, 0.95) 0%, rgba(7, 9, 11, 0.78) 46%, rgba(7, 9, 11, 0.34) 100%),
        linear-gradient(180deg, rgba(7, 9, 11, 0.24) 0%, rgba(7, 9, 11, 0.22) 56%, rgba(7, 9, 11, 0.88) 100%);
}

.v3_hero_grid {
    z-index: 3;
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.56) 58%, transparent 100%);
}

.v3_hero_placeholder {
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 90, 31, 0.24), transparent 25%),
        radial-gradient(circle at 58% 76%, rgba(36, 55, 74, 0.42), transparent 32%),
        #090b0d;
}

.v3_placeholder_frame {
    position: absolute;
    right: clamp(2%, 7vw, 10%);
    width: min(44vw, 680px);
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(243, 240, 232, 0.16);
    background:
        linear-gradient(135deg, rgba(255, 90, 31, 0.18), transparent 42%),
        linear-gradient(145deg, #181c20, #0d1013);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
    transform-origin: center;
}

.v3_placeholder_frame::before {
    content: "";
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(243, 240, 232, 0.12);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 38px 38px;
}

.v3_placeholder_frame span {
    position: absolute;
    left: 9%;
    bottom: 8%;
    z-index: 2;
    color: rgba(243, 240, 232, 0.84);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.v3_placeholder_frame_one {
    top: 16%;
    opacity: 0.34;
    transform: translate3d(8%, -10%, 0) rotate(6deg) scale(0.9);
    animation: v3FrameOne 9s ease-in-out infinite alternate;
}

.v3_placeholder_frame_two {
    top: 28%;
    opacity: 0.7;
    transform: translate3d(-3%, 0, 0) rotate(-3deg) scale(0.96);
    animation: v3FrameTwo 11s ease-in-out infinite alternate;
}

.v3_placeholder_frame_three {
    top: 39%;
    border-color: rgba(255, 90, 31, 0.42);
    transform: translate3d(5%, 4%, 0) rotate(2deg);
    animation: v3FrameThree 12s ease-in-out infinite alternate;
}

.v3_placeholder_scan {
    position: absolute;
    top: -20%;
    right: 0;
    width: 54%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff5a1f, transparent);
    opacity: 0.9;
    box-shadow: 0 0 24px rgba(255, 90, 31, 0.6);
    animation: v3Scan 6.4s linear infinite;
}

@keyframes v3FrameOne {
    to { transform: translate3d(2%, 2%, 0) rotate(2deg) scale(0.94); }
}

@keyframes v3FrameTwo {
    to { transform: translate3d(-8%, -4%, 0) rotate(1deg) scale(1); }
}

@keyframes v3FrameThree {
    to { transform: translate3d(0, -4%, 0) rotate(-1deg) scale(1.02); }
}

@keyframes v3Scan {
    0% { top: -4%; opacity: 0; }
    8% { opacity: 1; }
    92% { opacity: 1; }
    100% { top: 104%; opacity: 0; }
}

.v3_signal_line {
    position: absolute;
    top: 84px;
    left: 0;
    z-index: 6;
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: rgba(243, 240, 232, 0.08);
}

.v3_signal_line i {
    display: block;
    width: 28%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ff5a1f 24%, #ff5a1f 76%, transparent);
    animation: v3SignalLine 4.6s ease-in-out infinite;
}

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

.v3_hero_inner {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
    gap: 72px;
    align-items: end;
    min-height: calc(100svh - 250px);
}

.v3_hero_copy {
    max-width: 1080px;
}

.v3_hero_copy h1 {
    margin: 0;
    max-width: 1140px;
    font-size: clamp(62px, 7.8vw, 132px);
    line-height: 0.88;
    letter-spacing: -0.072em;
    text-wrap: balance;
}

.v3_hero_copy h1 span {
    color: #ff5a1f;
}

.v3_hero_lead {
    max-width: 760px;
    margin: 34px 0 0;
    color: #c0bdb5;
    font-size: clamp(18px, 1.5vw, 24px);
    line-height: 1.52;
    letter-spacing: -0.024em;
}

.v3_hero_modes {
    display: grid;
    align-self: end;
    border-top: 1px solid rgba(243, 240, 232, 0.2);
}

.v3_hero_modes a {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 4px 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(243, 240, 232, 0.16);
    transition: padding-left 180ms ease, border-color 180ms ease;
}

.v3_hero_modes a:hover {
    padding-left: 10px;
    border-color: #ff5a1f;
}

.v3_hero_modes span {
    grid-row: 1 / 3;
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    padding-top: 4px;
}

.v3_hero_modes strong {
    color: #f3f0e8;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.v3_hero_modes small {
    color: #87847d;
    font-size: 11px;
}

.v3_hero_footer {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 54px;
    padding-top: 18px;
    border-top: 1px solid rgba(243, 240, 232, 0.14);
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.v3_hero_footer p {
    margin: 0;
}

.v3_hero_scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff5a1f;
}

.v3_hero_scroll i {
    position: relative;
    width: 42px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 90, 31, 0.32);
}

.v3_hero_scroll i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ff5a1f;
    transform: translateX(-100%);
    animation: v3ScrollLine 2s ease-in-out infinite;
}

@keyframes v3ScrollLine {
    50%, 100% { transform: translateX(100%); }
}

.v3_video_toggle {
    z-index: 7;
}

.v3_marquee {
    overflow: hidden;
    border-top: 1px solid #d4cfc4;
    border-bottom: 1px solid #d4cfc4;
    background: #f3f0e8;
}

.v3_marquee_track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 28px;
    padding: 17px 0;
    color: #0b0d0f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    animation: v3Marquee 34s linear infinite;
}

.v3_marquee_track i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff5a1f;
}

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

.v3_positioning {
    padding-top: 132px;
    padding-bottom: 108px;
}

.v3_positioning_grid {
    display: grid;
    grid-template-columns: 0.7fr 2.3fr;
    gap: 56px;
}

.v3_positioning_copy {
    max-width: 1120px;
}

.v3_positioning_copy h2,
.v3_positioning_copy h1 {
    margin: 0;
    font-size: clamp(48px, 5.8vw, 92px);
    line-height: 0.96;
    letter-spacing: -0.062em;
    text-wrap: balance;
}

.v3_positioning_copy > p {
    max-width: 840px;
    margin: 34px 0 0;
    color: #58554f;
    font-size: 21px;
    line-height: 1.58;
    letter-spacing: -0.02em;
}

.v3_mode_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 76px;
    border-top: 1px solid #c9c4b9;
    border-left: 1px solid #c9c4b9;
}

.v3_mode_card {
    position: relative;
    min-height: 320px;
    padding: 28px;
    border-right: 1px solid #c9c4b9;
    border-bottom: 1px solid #c9c4b9;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.v3_mode_card:hover {
    transform: translateY(-6px);
    background: #0b0d0f;
    color: #f3f0e8;
}

.v3_mode_card > span {
    display: block;
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
}

.v3_mode_card h3 {
    max-width: 360px;
    margin: 118px 0 0;
    font-size: clamp(28px, 2.8vw, 46px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.v3_mode_card p {
    max-width: 320px;
    margin: 14px 0 0;
    color: #68645d;
    line-height: 1.55;
}

.v3_mode_card:hover p {
    color: #aaa7a0;
}

.v3_mode_card > i {
    position: absolute;
    right: 24px;
    bottom: 22px;
    color: #ff5a1f;
    font-size: 26px;
    font-style: normal;
}

.v3_mode_card_accent {
    background: #ff5a1f;
}

.v3_mode_card_accent > span,
.v3_mode_card_accent > i,
.v3_mode_card_accent p {
    color: #0b0d0f;
}

.v3_mode_card_accent:hover {
    background: #0b0d0f;
}

.v3_mode_card_accent:hover > span,
.v3_mode_card_accent:hover > i {
    color: #ff5a1f;
}

.v3_chapter {
    position: relative;
    overflow: hidden;
    padding: 148px 0;
}

.v3_chapter_dark {
    background: #0b0d0f;
    color: #f3f0e8;
}

.v3_chapter_light {
    background: #e9e5dc;
    color: #0b0d0f;
}

.v3_chapter_data {
    background:
        radial-gradient(circle at 72% 20%, rgba(255, 90, 31, 0.1), transparent 27%),
        #0b0d0f;
}

.v3_chapter_grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(60px, 7vw, 120px);
    align-items: center;
}

.v3_chapter_grid_reverse > :first-child {
    order: 1;
}

.v3_chapter_index {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 42px;
    color: #807d76;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
}

.v3_chapter_index span:first-child {
    color: #ff5a1f;
}

.v3_chapter_index i {
    height: 1px;
    background: currentColor;
    opacity: 0.32;
}

.v3_chapter_copy h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(50px, 5.8vw, 92px);
    line-height: 0.94;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.v3_chapter_lead {
    max-width: 700px;
    margin: 30px 0 0;
    color: #aaa7a0;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.v3_chapter_light .v3_chapter_lead {
    color: #57544e;
}

.v3_service_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 38px 0 0;
}

.v3_service_tags span {
    padding: 8px 11px;
    border: 1px solid rgba(243, 240, 232, 0.2);
    color: #d5d2ca;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v3_value_statement {
    margin: 46px 0 34px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(243, 240, 232, 0.18);
}

.v3_value_statement span {
    display: block;
    margin-bottom: 10px;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.v3_value_statement strong {
    display: block;
    max-width: 690px;
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.v3_value_statement_dark {
    border-color: rgba(11, 13, 15, 0.18);
}

.v3_value_statement_dark span {
    color: #77746d;
}

.v3_agency_visual,
.v3_data_dashboard {
    position: relative;
    min-height: 690px;
    padding: 24px;
    border: 1px solid rgba(243, 240, 232, 0.16);
    background: #121518;
    box-shadow: 0 46px 100px rgba(0, 0, 0, 0.28);
}

.v3_agency_visual::before,
.v3_data_dashboard::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 90, 31, 0.14), transparent 32%);
}

.v3_visual_head {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #7f7c75;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
}

.v3_edit_timeline {
    position: relative;
    z-index: 2;
    margin-top: 44px;
    padding: 24px 18px 30px;
    border: 1px solid rgba(243, 240, 232, 0.12);
    background: #0d1013;
    overflow: hidden;
}

.v3_timeline_labels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: #68665f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.1em;
}

.v3_timeline_track {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.4fr 0.6fr 1fr 0.7fr 1.1fr 0.8fr;
    gap: 5px;
    margin-top: 18px;
}

.v3_timeline_track i {
    min-height: 54px;
    background: #29323a;
}

.v3_timeline_track i:nth-child(2),
.v3_timeline_track i:nth-child(5),
.v3_timeline_track i:nth-child(7) {
    background: #ff5a1f;
}

.v3_timeline_audio {
    display: grid;
    grid-template-columns: 1fr 1.3fr 0.7fr 1.2fr 0.8fr 1.4fr;
    gap: 5px;
    margin-top: 8px;
}

.v3_timeline_audio i {
    min-height: 20px;
    background: #263341;
}

.v3_timeline_playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16%;
    width: 1px;
    background: #ff5a1f;
    box-shadow: 0 0 16px rgba(255, 90, 31, 0.7);
    animation: v3Playhead 7s ease-in-out infinite;
}

@keyframes v3Playhead {
    0%, 8% { left: 12%; }
    82%, 100% { left: 86%; }
}

.v3_agency_projects {
    position: relative;
    z-index: 2;
    display: grid;
    margin-top: 28px;
    border-top: 1px solid rgba(243, 240, 232, 0.14);
}

.v3_agency_projects article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(243, 240, 232, 0.12);
}

.v3_agency_projects article > span {
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
}

.v3_agency_projects small {
    display: block;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.12em;
}

.v3_agency_projects strong {
    display: block;
    margin-top: 3px;
    color: #f3f0e8;
    font-size: 25px;
    letter-spacing: -0.04em;
}

.v3_agency_projects p {
    margin: 8px 0 0;
    color: #9b9891;
    font-size: 14px;
    line-height: 1.55;
}

.v3_company_visual {
    position: relative;
}

.v3_company_image_wrap {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #111315;
}

.v3_company_image_wrap img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.04);
}

.v3_company_image_wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(11, 13, 15, 0.82) 100%);
}

.v3_company_overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    color: #f3f0e8;
}

.v3_company_overlay span,
.v3_company_overlay strong {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
}

.v3_company_overlay strong {
    color: #ff5a1f;
}

.v3_channel_matrix {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(11, 13, 15, 0.22);
}

.v3_channel_matrix span {
    padding: 14px 10px;
    border-right: 1px solid rgba(11, 13, 15, 0.22);
    border-bottom: 1px solid rgba(11, 13, 15, 0.22);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
}

.v3_operation_flow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
}

.v3_operation_flow > div {
    flex: 1;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(11, 13, 15, 0.18);
}

.v3_operation_flow > div span {
    display: block;
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
}

.v3_operation_flow > div strong {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.v3_operation_flow > i {
    flex: 0 0 12px;
    height: 1px;
    background: #ff5a1f;
}

.v3_company_scope {
    margin-top: 38px;
    border-top: 1px solid rgba(11, 13, 15, 0.18);
}

.v3_company_scope div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(11, 13, 15, 0.18);
}

.v3_company_scope span {
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v3_company_scope strong {
    font-size: 15px;
}

.v3_data_loop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 38px;
}

.v3_data_loop span {
    padding: 9px 11px;
    border: 1px solid rgba(243, 240, 232, 0.18);
    color: #d5d2ca;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v3_data_loop i {
    color: #ff5a1f;
    font-style: normal;
}

.v3_chart_area {
    position: relative;
    z-index: 2;
    height: 330px;
    margin-top: 40px;
    overflow: hidden;
    border: 1px solid rgba(243, 240, 232, 0.12);
    background: #0d1013;
}

.v3_chart_grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
}

.v3_chart_area svg {
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 10%;
    width: 88%;
    height: 76%;
    overflow: visible;
}

.v3_chart_line,
.v3_chart_line_secondary {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.v3_chart_line {
    stroke: #ff5a1f;
    stroke-width: 4;
    filter: drop-shadow(0 0 9px rgba(255, 90, 31, 0.42));
    stroke-dasharray: 1050;
    stroke-dashoffset: 1050;
}

.v3_data_dashboard.is_chart_active .v3_chart_line {
    animation: v3DrawChart 2.1s ease forwards;
}

.v3_chart_line_secondary {
    stroke: #5d7488;
    stroke-width: 2;
    opacity: 0.72;
    stroke-dasharray: 1050;
    stroke-dashoffset: 1050;
}

.v3_data_dashboard.is_chart_active .v3_chart_line_secondary {
    animation: v3DrawChart 2.5s 0.24s ease forwards;
}

@keyframes v3DrawChart {
    to { stroke-dashoffset: 0; }
}

.v3_chart_marker {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5a1f;
    box-shadow: 0 0 0 7px rgba(255, 90, 31, 0.12);
    animation: v3PulseMarker 2.4s ease-in-out infinite;
}

.v3_chart_marker_one { left: 34%; top: 52%; }
.v3_chart_marker_two { left: 63%; top: 37%; animation-delay: 0.6s; }
.v3_chart_marker_three { left: 86%; top: 17%; animation-delay: 1.2s; }

@keyframes v3PulseMarker {
    50% { transform: scale(1.25); box-shadow: 0 0 0 12px rgba(255, 90, 31, 0.03); }
}

.v3_signal_cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 22px;
    border-top: 1px solid rgba(243, 240, 232, 0.14);
    border-left: 1px solid rgba(243, 240, 232, 0.14);
}

.v3_signal_cards article {
    min-height: 210px;
    padding: 18px;
    border-right: 1px solid rgba(243, 240, 232, 0.14);
    border-bottom: 1px solid rgba(243, 240, 232, 0.14);
}

.v3_signal_cards small {
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.1em;
}

.v3_signal_cards strong {
    display: block;
    margin-top: 54px;
    color: #f3f0e8;
    font-size: 20px;
    letter-spacing: -0.035em;
}

.v3_signal_cards p {
    margin: 10px 0 0;
    color: #96938c;
    font-size: 13px;
    line-height: 1.5;
}

.v3_project_worlds {
    padding-top: 132px;
    padding-bottom: 132px;
}

.v3_world_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #c9c4b9;
    border-left: 1px solid #c9c4b9;
}

.v3_world_card {
    min-height: 420px;
    padding: 26px;
    border-right: 1px solid #c9c4b9;
    border-bottom: 1px solid #c9c4b9;
}

.v3_world_card > span,
.v3_world_card small {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v3_world_card > span {
    color: #ff5a1f;
}

.v3_world_card h3 {
    max-width: 420px;
    margin: 140px 0 0;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.052em;
}

.v3_world_card p {
    max-width: 440px;
    margin: 18px 0 24px;
    color: #5f5b55;
    line-height: 1.6;
}

.v3_world_card small {
    color: #77746d;
}

.v3_about_visual {
    display: grid;
    place-items: center;
}

.v3_about_visual img {
    position: relative;
    z-index: 2;
    width: 78%;
    height: auto;
    object-fit: contain;
}

.v3_footer_brand img {
    width: 42px;
    height: 26px;
    object-fit: contain;
}

@media (max-width: 1180px) {
    .v3_hero_inner,
    .v3_chapter_grid {
        grid-template-columns: 1fr;
    }

    .v3_hero_modes {
        grid-template-columns: repeat(3, 1fr);
        border-left: 1px solid rgba(243, 240, 232, 0.16);
    }

    .v3_hero_modes a {
        padding: 18px;
        border-right: 1px solid rgba(243, 240, 232, 0.16);
    }

    .v3_chapter_grid_reverse > :first-child {
        order: 0;
    }

    .v3_chapter_copy {
        max-width: 920px;
    }

    .v3_agency_visual,
    .v3_data_dashboard {
        min-height: auto;
    }
}

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

    .v3_mode_cards,
    .v3_world_grid {
        grid-template-columns: 1fr;
    }

    .v3_mode_card {
        min-height: 250px;
    }

    .v3_mode_card h3,
    .v3_world_card h3 {
        margin-top: 70px;
    }

    .v3_hero_modes {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .v3_hero_modes a {
        padding-inline: 0;
        border-right: 0;
    }

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

    .v3_signal_cards article {
        min-height: 160px;
    }

    .v3_signal_cards strong {
        margin-top: 28px;
    }

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

    .v3_operation_flow > i {
        display: none;
    }
}

@media (max-width: 700px) {
    .v3_brand_mark {
        width: 48px;
        height: 29px;
    }

    .v3_hero {
        min-height: auto;
        padding: 126px 0 26px;
    }

    .v3_hero_inner {
        min-height: auto;
        gap: 54px;
    }

    .v3_hero_copy h1 {
        font-size: clamp(54px, 16.2vw, 84px);
    }

    .v3_hero_lead {
        font-size: 18px;
    }

    .v3_placeholder_frame {
        right: -28%;
        width: 100vw;
        opacity: 0.46;
    }

    .v3_hero_scrim {
        background: linear-gradient(90deg, rgba(7, 9, 11, 0.96), rgba(7, 9, 11, 0.76));
    }

    .v3_hero_footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .v3_marquee_track {
        animation-duration: 24s;
    }

    .v3_positioning {
        padding-top: 88px;
        padding-bottom: 78px;
    }

    .v3_positioning_copy h2,
    .v3_chapter_copy h2 {
        font-size: clamp(42px, 13vw, 66px);
    }

    .v3_positioning_copy > p,
    .v3_chapter_lead {
        font-size: 18px;
    }

    .v3_chapter {
        padding: 92px 0;
    }

    .v3_agency_visual,
    .v3_data_dashboard {
        padding: 16px;
    }

    .v3_agency_projects article {
        grid-template-columns: 30px 1fr;
    }

    .v3_company_image_wrap,
    .v3_company_image_wrap img {
        min-height: 360px;
    }

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

    .v3_company_scope div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .v3_chart_area {
        height: 260px;
    }

    .v3_world_card {
        min-height: 320px;
    }

    .v3_world_card h3 {
        margin-top: 74px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3_placeholder_frame,
    .v3_placeholder_scan,
    .v3_signal_line i,
    .v3_hero_scroll i::after,
    .v3_marquee_track,
    .v3_timeline_playhead,
    .v3_chart_marker {
        animation: none !important;
    }

    .v3_chart_line,
    .v3_chart_line_secondary {
        stroke-dashoffset: 0 !important;
    }
}

/* ==========================================================
   PROOF AND CONVERSION MODULES
   Camera sequence, offers, journal, cases and inquiry
   ========================================================== */

.v3_proof_section {
    padding-top: 118px;
    padding-bottom: 130px;
    background: #e8e4da;
}

.v3_proof_grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px 24px;
}

.v3_proof_card {
    grid-column: span 4;
    min-width: 0;
}

.v3_proof_media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111416;
}

.v3_proof_media img,
.v3_proof_media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 720ms cubic-bezier(.2,.75,.2,1), filter 420ms ease;
}

.v3_proof_card:hover .v3_proof_media img,
.v3_proof_card:hover .v3_proof_media video {
    transform: scale(1.035);
    filter: contrast(1.03);
}

.v3_proof_open {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 10px 12px;
    background: var(--nw-orange);
    color: var(--nw-graphit);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.v3_proof_placeholder,
.v3_proof_code {
    position: absolute;
    left: 26px;
    bottom: 24px;
    color: var(--nw-offwhite);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.v3_proof_media_agency {
    background:
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        #111416;
    background-size: 38px 38px;
}

.v3_proof_media_agency::before,
.v3_proof_media_agency::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    height: 42px;
    border: 1px solid rgba(243,240,232,.18);
    background: #1a1e21;
}

.v3_proof_media_agency::before {
    top: 30%;
    box-shadow: 36px 56px 0 -1px #ff5a1f, 36px 56px 0 0 rgba(243,240,232,.18);
}

.v3_proof_media_agency::after {
    top: 50%;
    left: 20%;
    right: 6%;
}

.v3_proof_media_portrait {
    background:
        radial-gradient(circle at 64% 40%, var(--nw-orange) 0 18%, transparent 18.5%),
        radial-gradient(circle at 64% 40%, transparent 0 31%, rgba(243,240,232,.18) 31.5% 32%, transparent 32.5%),
        #121518;
}

.v3_proof_media_portrait::before {
    content: "";
    position: absolute;
    inset: 13% 19%;
    border: 1px solid rgba(243,240,232,.2);
    border-radius: 53% 47% 45% 55%;
    transform: rotate(-9deg);
}

.v3_proof_copy {
    padding-top: 20px;
}

.v3_proof_copy h3 {
    margin: 0;
    font-size: clamp(30px, 2.7vw, 46px);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.v3_proof_copy > p:not(.work_meta) {
    margin: 14px 0 0;
    color: #5d5953;
    line-height: 1.65;
}

.v3_proof_client {
    display: inline-flex;
    margin-top: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(11,13,15,.18);
    color: #706c65;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.production_story {
    min-height: 360vh;
}

.story_stage {
    min-height: min(72vh, 790px);
    background:
        radial-gradient(circle at 48% 42%, rgba(255,90,31,.06), transparent 34%),
        #0f1214;
}

.camera_rig {
    position: absolute;
    left: 4%;
    top: 14%;
    width: 78%;
    transform-origin: 54% 52%;
    transition: opacity 90ms linear, filter 90ms linear;
    filter: drop-shadow(0 44px 72px rgba(0,0,0,.52));
    will-change: transform, opacity, filter;
}

.camera_rig img {
    width: 100%;
    height: auto;
}

.camera_focus_ring {
    position: absolute;
    right: 2.8%;
    top: 31%;
    width: 20.3%;
    aspect-ratio: 1;
    border: 1px solid rgba(255,90,31,.58);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255,90,31,.045), 0 0 54px rgba(255,90,31,.18);
    animation: nwFocusPulse 2.6s ease-in-out infinite;
}

.camera_signal_dot {
    position: absolute;
    left: 17.5%;
    top: 65.5%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--nw-orange);
    box-shadow: 0 0 0 8px rgba(255,90,31,.1);
}

.stage_phase {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.stage_phase span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: var(--nw-orange);
    color: var(--nw-graphit);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    font-weight: 900;
}

.stage_phase strong {
    color: var(--nw-offwhite);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .13em;
}

.asset_fan {
    --asset-progress: 0;
    position: absolute;
    inset: 14% 8% 14% 18%;
    opacity: var(--asset-progress);
    pointer-events: none;
    z-index: 4;
}

.asset_fan article {
    position: absolute;
    width: min(290px, 44%);
    min-height: 112px;
    padding: 18px;
    border: 1px solid rgba(243,240,232,.2);
    background: rgba(18,21,24,.94);
    box-shadow: 0 24px 58px rgba(0,0,0,.32);
    color: var(--nw-offwhite);
    transform-origin: center;
    transition: border-color 180ms ease;
}

.asset_fan article span,
.asset_fan article small {
    display: block;
    color: #7e7b74;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .1em;
}

.asset_fan article strong {
    display: block;
    margin: 18px 0 5px;
    font-size: 19px;
    letter-spacing: -.03em;
}

.asset_fan article:nth-child(1) {
    left: calc(2% + var(--asset-progress) * -7%);
    top: calc(36% + var(--asset-progress) * -28%);
    transform: rotate(calc(-4deg - var(--asset-progress) * 4deg));
}

.asset_fan article:nth-child(2) {
    left: calc(22% + var(--asset-progress) * -2%);
    top: calc(39% + var(--asset-progress) * -9%);
    transform: rotate(calc(-2deg + var(--asset-progress) * 2deg));
}

.asset_fan article:nth-child(3) {
    left: calc(36% + var(--asset-progress) * 13%);
    top: calc(41% + var(--asset-progress) * -29%);
    transform: rotate(calc(2deg + var(--asset-progress) * 4deg));
    background: var(--nw-orange);
    color: var(--nw-graphit);
    border-color: var(--nw-orange);
}

.asset_fan article:nth-child(3) span,
.asset_fan article:nth-child(3) small {
    color: rgba(11,13,15,.66);
}

.asset_fan article:nth-child(4) {
    left: calc(18% + var(--asset-progress) * -4%);
    top: calc(46% + var(--asset-progress) * 24%);
    transform: rotate(calc(-1deg - var(--asset-progress) * 3deg));
}

.asset_fan article:nth-child(5) {
    left: calc(42% + var(--asset-progress) * 16%);
    top: calc(46% + var(--asset-progress) * 18%);
    transform: rotate(calc(3deg + var(--asset-progress) * 4deg));
}

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

.offer_grid_final .offer_card {
    min-height: 640px;
}

.offer_fit {
    display: grid;
    gap: 5px;
    min-height: 72px;
    margin: 0 0 28px;
    padding: 16px 0;
    border-top: 1px solid rgba(243,240,232,.14);
    border-bottom: 1px solid rgba(243,240,232,.14);
}

.offer_fit span {
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.offer_fit strong {
    font-size: 14px;
    line-height: 1.45;
}

.offer_card_accent .offer_fit {
    border-color: rgba(11,13,15,.2);
}

.offer_card_accent .offer_fit span {
    color: rgba(11,13,15,.62);
}

.offers_note {
    display: grid;
    grid-template-columns: .55fr 1.2fr auto;
    gap: 28px;
    align-items: center;
    margin-top: 28px;
    padding: 28px;
    border: 1px solid var(--nw-line-light);
}

.offers_note > span {
    color: var(--nw-orange);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.offers_note p {
    margin: 0;
    color: #a8a59e;
    line-height: 1.6;
}

.form_counter {
    justify-self: end;
    margin-top: -4px;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
}

.consent_field {
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px !important;
    padding: 4px 0;
}

.consent_field input {
    width: 17px !important;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--nw-orange);
}

.consent_field > span {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.55;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.consent_field a {
    border-bottom: 1px solid var(--nw-graphit);
}

.form_submit_row {
    display: flex;
    align-items: center;
    gap: 22px;
}

.form_submit_row p {
    max-width: 370px;
    margin: 0;
    color: #69665f;
    font-size: 12px;
    line-height: 1.55;
}

.journal_hero_grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 56px;
    align-items: end;
}

.journal_hero_grid > p {
    margin: 0 0 12px;
    color: #aaa7a0;
    font-size: 18px;
    line-height: 1.65;
}

.journal_filter_line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 42px;
}

.journal_filter_line span {
    padding: 8px 10px;
    border: 1px solid var(--nw-line-dark);
    color: #66625c;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.journal_grid_archive .journal_card {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--nw-line-dark);
}

.journal_grid_archive .journal_card .text_link {
    margin-top: 18px;
}

.journal_single_hero {
    padding: 180px 0 96px;
}

.journal_single_head {
    max-width: 1180px;
}

.journal_single_head h1 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(58px, 7.2vw, 116px);
    line-height: .92;
    letter-spacing: -.067em;
}

.journal_single_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 34px;
    color: #8f8c85;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.journal_single_image {
    margin-top: 60px;
}

.journal_single_image img {
    width: 100%;
    max-height: 78vh;
    object-fit: cover;
}

.journal_single_body {
    padding-top: 78px;
    padding-bottom: 86px;
}

.journal_post_nav {
    padding-bottom: 90px;
}

.journal_post_nav .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--nw-line-dark);
}

.journal_cta,
.case_next_step {
    padding: 96px 0;
}

.journal_cta h2,
.case_next_step h2 {
    max-width: 1000px;
    margin: 0 0 34px;
    font-size: clamp(48px, 6vw, 92px);
    line-height: .95;
    letter-spacing: -.06em;
}

.case_hero_side {
    display: grid;
    justify-items: end;
    gap: 10px;
    text-align: right;
}

.case_hero_side strong {
    max-width: 240px;
    color: #9a978f;
    font-size: 14px;
}

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

.case_story_grid article {
    min-height: 380px;
    padding: 28px;
    border-right: 1px solid var(--nw-line-dark);
    border-bottom: 1px solid var(--nw-line-dark);
}

.case_story_grid article > span {
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.case_story_grid h2 {
    margin: 128px 0 14px;
    font-size: clamp(28px, 2.5vw, 42px);
    line-height: 1.03;
    letter-spacing: -.05em;
}

.case_story_grid p {
    margin: 0;
    color: #625f59;
    line-height: 1.65;
}

.case_story_accent {
    background: var(--nw-orange);
}

.case_story_accent article,
.case_story_accent p {
    color: var(--nw-graphit);
}

.case_story_accent > span,
.case_story_accent p {
    color: rgba(11,13,15,.72);
}

@keyframes nwFocusPulse {
    0%, 100% { transform: scale(.96); opacity: .62; }
    50% { transform: scale(1.04); opacity: 1; }
}

@media (max-width: 1120px) {
    .v3_proof_card {
        grid-column: span 6;
    }

    .v3_proof_card:last-child {
        grid-column: 4 / span 6;
    }

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

    .offers_note {
        grid-template-columns: 1fr;
        justify-items: start;
    }

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

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

    .case_story_grid article {
        min-height: 0;
    }

    .case_story_grid h2 {
        margin-top: 64px;
    }
}

@media (max-width: 860px) {
    .v3_proof_card,
    .v3_proof_card:last-child {
        grid-column: 1 / -1;
    }

    .production_story {
        min-height: auto;
    }

    .camera_rig {
        left: 1%;
        top: 16%;
        width: 92%;
    }

    .asset_fan {
        inset: 12% 5% 10% 5%;
    }

    .asset_fan article {
        width: 46%;
        min-height: 96px;
        padding: 14px;
    }

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

    .offer_grid_final .offer_card {
        min-height: 0;
    }

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

@media (max-width: 620px) {
    .v3_proof_section {
        padding-top: 84px;
        padding-bottom: 90px;
    }

    .story_stage {
        min-height: 520px;
    }

    .camera_rig {
        left: -8%;
        top: 20%;
        width: 112%;
    }

    .stage_phase {
        left: 14px;
        bottom: 14px;
    }

    .asset_fan {
        inset: 14% 3% 12% 3%;
    }

    .asset_fan article {
        width: 52%;
        min-height: 86px;
    }

    .asset_fan article strong {
        margin-top: 12px;
        font-size: 15px;
    }

    .asset_fan article small {
        display: none;
    }

    .offers_note {
        padding: 22px;
    }

    .journal_single_hero {
        padding-top: 140px;
    }

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

    .journal_post_nav .nav-links {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .camera_focus_ring {
        animation: none !important;
    }

    .camera_rig {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .asset_fan {
        --asset-progress: 1 !important;
        position: absolute;
        opacity: .92 !important;
    }
}

/* =========================================================
   CAMERA PROCESS MODULE
   Character Select About + vertical camera descent
   ========================================================= */

/* Camera sequence now follows the scroll direction: down. */
.production_story {
    min-height: 420vh;
}

.story_stage_v4 {
    min-height: min(76vh, 820px);
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 90, 31, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 32%),
        #0e1113;
}

.camera_descent_path {
    position: absolute;
    top: 10%;
    bottom: 12%;
    left: 50%;
    width: 120px;
    transform: translateX(-50%);
    z-index: 1;
}

.camera_descent_path > i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255, 90, 31, 0.08),
        rgba(255, 90, 31, 0.72) 14%,
        rgba(255, 90, 31, 0.72) 86%,
        rgba(255, 90, 31, 0.08)
    );
    box-shadow: 0 0 24px rgba(255, 90, 31, 0.12);
}

.camera_descent_path span {
    position: absolute;
    left: 50%;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(243, 240, 232, 0.18);
    background: #0e1113;
    color: #6e6b65;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
    transform: translate(-50%, -50%);
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.camera_descent_path span:nth-of-type(1) { top: 7%; }
.camera_descent_path span:nth-of-type(2) { top: 36%; }
.camera_descent_path span:nth-of-type(3) { top: 65%; }
.camera_descent_path span:nth-of-type(4) { top: 94%; }

.camera_descent_path span.is_active {
    border-color: var(--nw-orange);
    background: var(--nw-orange);
    color: var(--nw-graphit);
    box-shadow: 0 0 0 8px rgba(255, 90, 31, 0.08), 0 0 34px rgba(255, 90, 31, 0.18);
}

.camera_rig_v4 {
    left: 18%;
    top: 8%;
    width: 64%;
    z-index: 3;
    transform-origin: 50% 50%;
}

.camera_rig_v4 img {
    filter: drop-shadow(0 32px 58px rgba(0, 0, 0, 0.54));
}

.camera_rig_v4 .camera_focus_ring {
    right: 2.8%;
    top: 31%;
}

.camera_direction_label {
    position: absolute;
    left: 17%;
    bottom: 3%;
    padding: 6px 8px;
    border: 1px solid rgba(243, 240, 232, 0.16);
    background: rgba(11, 13, 15, 0.72);
    color: #8e8b84;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.stage_phase_v4 {
    left: 22px;
    bottom: 22px;
    z-index: 8;
}

.story_progress_v4 {
    right: 18px;
    top: 72px;
    bottom: 72px;
}

.asset_fan_v4 {
    inset: auto 5% 9% 5%;
    height: 48%;
    z-index: 6;
}

.asset_fan_v4 article {
    width: min(250px, 35%);
    min-height: 102px;
    backdrop-filter: blur(12px);
}

.asset_fan_v4 article:nth-child(1) {
    left: calc(50% + var(--asset-progress) * -47%);
    top: calc(52% + var(--asset-progress) * -38%);
    transform: translateX(-50%) rotate(calc(var(--asset-progress) * -7deg));
}

.asset_fan_v4 article:nth-child(2) {
    left: calc(50% + var(--asset-progress) * -24%);
    top: calc(52% + var(--asset-progress) * -10%);
    transform: translateX(-50%) rotate(calc(var(--asset-progress) * -3deg));
}

.asset_fan_v4 article:nth-child(3) {
    left: 50%;
    top: calc(52% + var(--asset-progress) * 4%);
    transform: translateX(-50%);
    border-color: rgba(255, 90, 31, 0.72);
}

.asset_fan_v4 article:nth-child(4) {
    left: calc(50% + var(--asset-progress) * 24%);
    top: calc(52% + var(--asset-progress) * -10%);
    transform: translateX(-50%) rotate(calc(var(--asset-progress) * 3deg));
}

.asset_fan_v4 article:nth-child(5) {
    left: calc(50% + var(--asset-progress) * 47%);
    top: calc(52% + var(--asset-progress) * -38%);
    transform: translateX(-50%) rotate(calc(var(--asset-progress) * 7deg));
}

.camera_output_label {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: grid;
    justify-items: end;
    gap: 3px;
    z-index: 8;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.1em;
}

.camera_output_label strong {
    color: var(--nw-offwhite);
    font-size: 9px;
}

/* =========================================================
   V5 STANDARD SYSTEM LAYER
   Section ordering and responsive capability grids
   ========================================================= */

.front_page_main {
    display: flex;
    flex-direction: column;
}

.front_page_main > section[hidden] {
    display: none !important;
}

.front_page_main .v3_mode_cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

/* =========================================================
   V5 CREATIVE SYSTEM REWORK
   ========================================================= */

.creative_system {
    position: relative;
    overflow: clip;
    padding: 128px 0 118px;
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 90, 31, 0.08), transparent 28%),
        #0b0d0f;
}

.creative_system::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(243, 240, 232, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243, 240, 232, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 88%);
}

.creative_system_shell {
    position: relative;
    z-index: 1;
}

.creative_system_header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 58px;
}

.creative_system_header > div:first-child {
    max-width: 950px;
}

.creative_system_header h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(60px, 7.1vw, 118px);
    line-height: .88;
    letter-spacing: -.072em;
}

.creative_system_header > div:first-child > p:last-child {
    max-width: 780px;
    margin: 28px 0 0;
    color: #9d9a93;
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.5;
    letter-spacing: -.02em;
}

.creative_system_status {
    justify-self: end;
    display: grid;
    grid-template-columns: auto 8px auto;
    align-items: center;
    gap: 10px;
    min-width: 270px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(243, 240, 232, .18);
    color: #8d8a83;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.creative_system_status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff5a1f;
    box-shadow: 0 0 0 5px rgba(255, 90, 31, .12);
    animation: creativeStatusPulse 2.4s ease-in-out infinite;
}

.creative_system_status strong {
    color: #f3f0e8;
}

.creative_system_status small {
    grid-column: 1 / -1;
    margin-top: 12px;
    color: #625f59;
    font-size: 9px;
}

@keyframes creativeStatusPulse {
    0%, 100% { opacity: .55; transform: scale(.9); }
    50% { opacity: 1; transform: scale(1); }
}

.creative_system_grid {
    display: grid;
    grid-template-columns: minmax(310px, .78fr) minmax(0, 1.62fr);
    gap: 22px;
    align-items: stretch;
}

.creative_profile_visual,
.creative_lab,
.career_story {
    border: 1px solid rgba(243, 240, 232, .18);
    background: rgba(16, 19, 21, .82);
}

.creative_profile_visual {
    --pointer-x: 50%;
    --pointer-y: 46%;
    position: relative;
    min-height: 760px;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 90, 31, .14), transparent 18%),
        linear-gradient(180deg, #15191c 0%, #101315 68%, #0d1012 100%);
}

.profile_visual_grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(243, 240, 232, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243, 240, 232, .045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.65) 68%, transparent 100%);
}

.profile_visual_scan {
    position: absolute;
    z-index: 5;
    inset: 14% 6% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff5a1f, transparent);
    opacity: .6;
    animation: profileScan 6s ease-in-out infinite;
}

@keyframes profileScan {
    0%, 100% { transform: translateY(0); opacity: .25; }
    48% { opacity: .8; }
    50% { transform: translateY(460px); opacity: .8; }
    98% { transform: translateY(0); opacity: .25; }
}

.profile_focus_frame {
    position: absolute;
    z-index: 6;
    inset: 20% 15% 25%;
    pointer-events: none;
    transition: inset 480ms cubic-bezier(.2,.75,.2,1);
}

.creative_profile_visual:hover .profile_focus_frame {
    inset: 17% 12% 22%;
}

.profile_focus_frame i {
    position: absolute;
    width: 30px;
    height: 30px;
}

.profile_focus_frame i:nth-child(1) { inset: 0 auto auto 0; border-top: 2px solid #ff5a1f; border-left: 2px solid #ff5a1f; }
.profile_focus_frame i:nth-child(2) { inset: 0 0 auto auto; border-top: 1px solid rgba(243,240,232,.55); border-right: 1px solid rgba(243,240,232,.55); }
.profile_focus_frame i:nth-child(3) { inset: auto auto 0 0; border-bottom: 1px solid rgba(243,240,232,.55); border-left: 1px solid rgba(243,240,232,.55); }
.profile_focus_frame i:nth-child(4) { inset: auto 0 0 auto; border-bottom: 2px solid #ff5a1f; border-right: 2px solid #ff5a1f; }

.profile_focus_point {
    position: absolute;
    z-index: 7;
    left: var(--pointer-x);
    top: var(--pointer-y);
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,90,31,.75);
    transform: translate(-50%, -50%);
    transition: left 100ms linear, top 100ms linear;
}

.profile_focus_point::before,
.profile_focus_point::after {
    content: "";
    position: absolute;
    background: rgba(255,90,31,.65);
}

.profile_focus_point::before { width: 28px; height: 1px; left: -6px; top: 8px; }
.profile_focus_point::after { height: 28px; width: 1px; left: 8px; top: -6px; }

.profile_visual_readout {
    position: absolute;
    z-index: 9;
    color: #b8b5ae;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.profile_visual_readout_top {
    top: 20px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
}

.profile_visual_readout_side {
    top: 50%;
    right: 18px;
    display: grid;
    gap: 5px;
    transform: translateY(-50%);
    text-align: right;
}

.profile_visual_readout_side strong {
    color: #ff5a1f;
    font-size: 9px;
}

.creative_portrait_frame {
    position: absolute;
    z-index: 3;
    inset: 70px 20px 136px;
    overflow: hidden;
    transition: transform 240ms ease-out;
}

.creative_portrait,
.creative_portrait_placeholder {
    width: 100%;
    height: 100%;
}

.creative_portrait {
    object-fit: cover;
    filter: saturate(.88) contrast(1.03);
    transition: transform 260ms ease-out, filter 360ms ease;
}

.creative_profile_visual:hover .creative_portrait {
    filter: saturate(.98) contrast(1.04);
}

.creative_portrait_placeholder {
    position: relative;
    display: grid;
    place-content: end center;
    gap: 6px;
    padding-bottom: 44px;
    color: #a5a29b;
    text-align: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,90,31,.18), transparent 24%),
        linear-gradient(145deg, #1b2023, #101315);
}

.creative_portrait_placeholder > span {
    position: absolute;
    left: 50%;
    top: 22%;
    width: 42%;
    height: 58%;
    border-radius: 48% 48% 12% 12%;
    background: linear-gradient(#3d4246, #282d31);
    transform: translateX(-50%);
}

.creative_portrait_placeholder > span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -24%;
    width: 44%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #444a4e;
    transform: translateX(-50%);
}

.creative_portrait_placeholder strong,
.creative_portrait_placeholder small {
    position: relative;
    z-index: 2;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.creative_portrait_placeholder strong { color: #f3f0e8; font-size: 10px; }
.creative_portrait_placeholder small { font-size: 8px; }

.creative_profile_caption {
    position: absolute;
    z-index: 10;
    inset: auto 0 0;
    display: grid;
    gap: 16px;
    padding: 24px;
    border-top: 1px solid rgba(243,240,232,.18);
    background: linear-gradient(180deg, rgba(11,13,15,.78), rgba(11,13,15,.96));
}

.creative_profile_caption > p:first-child {
    display: grid;
    margin: 0;
    line-height: .84;
}

.creative_profile_caption > p:first-child span {
    color: #77746d;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.creative_profile_caption > p:first-child strong {
    color: #f3f0e8;
    font-size: clamp(34px, 3.4vw, 58px);
    letter-spacing: -.065em;
}

.creative_profile_caption > div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(243,240,232,.14);
}

.creative_profile_caption > div span {
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .12em;
}

.creative_profile_caption > div strong {
    color: #f3f0e8;
    font-size: 12px;
}

.creative_profile_caption > p:last-child {
    margin: 0;
    color: #9e9b94;
    font-size: 13px;
    line-height: 1.55;
}

.creative_lab {
    min-width: 0;
}

.creative_lab_head {
    display: grid;
    grid-template-columns: 1fr minmax(240px, .7fr);
    gap: 28px;
    align-items: start;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(243,240,232,.18);
}

.creative_lab_head > div {
    display: grid;
    gap: 6px;
    color: #f3f0e8;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .12em;
}

.creative_lab_head > div small {
    color: #6f6c66;
    font-size: 8px;
}

.creative_lab_head > p {
    margin: 0;
    color: #827f78;
    font-size: 12px;
    line-height: 1.55;
}

.creative_module_tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid rgba(243,240,232,.18);
}

.creative_module_tab {
    position: relative;
    min-height: 128px;
    padding: 18px;
    border: 0;
    border-right: 1px solid rgba(243,240,232,.14);
    background: transparent;
    color: #817e77;
    text-align: left;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease;
}

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

.creative_module_tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -1px;
    height: 2px;
    background: #ff5a1f;
    transition: right 300ms cubic-bezier(.2,.75,.2,1);
}

.creative_module_tab:hover,
.creative_module_tab.is_active {
    color: #f3f0e8;
    background: rgba(255,255,255,.025);
}

.creative_module_tab.is_active::after { right: 0; }

.creative_module_tab > span,
.creative_module_tab > small {
    display: block;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.creative_module_tab > span {
    margin-bottom: 22px;
    color: #ff5a1f;
}

.creative_module_tab > strong {
    display: block;
    min-height: 2.2em;
    font-size: clamp(18px, 1.6vw, 27px);
    line-height: 1;
    letter-spacing: -.04em;
}

.creative_module_tab > small {
    margin-top: 12px;
    color: #5f5c56;
    line-height: 1.45;
}

.creative_demo_console {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.58fr) minmax(280px, .62fr);
    min-height: 510px;
}

.creative_demo_console.is_switching .creative_module_detail::before {
    animation: creativeDetailSweep 480ms ease;
}

@keyframes creativeDetailSweep {
    0% { transform: translateX(-100%); opacity: .9; }
    100% { transform: translateX(100%); opacity: 0; }
}

.creative_demo_stage {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-right: 1px solid rgba(243,240,232,.18);
    background:
        linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px),
        #0f1214;
    background-size: 36px 36px;
}

.creative_demo {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 18px;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 280ms ease, transform 360ms ease, visibility 0s linear 360ms;
}

.creative_demo.is_active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.demo_caption {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 22px;
    align-items: start;
    padding-top: 16px;
    border-top: 1px solid rgba(243,240,232,.14);
}

.demo_caption span {
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .12em;
}

.demo_caption strong {
    color: #8e8b84;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.production_viewfinder {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background:
        radial-gradient(circle at 52% 48%, rgba(255,90,31,.12), transparent 18%),
        linear-gradient(145deg, #1a2023, #111517);
}

.production_viewfinder::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58%;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(243,240,232,.1);
    transform: translate(-50%, -50%);
}

.viewfinder_corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: rgba(243,240,232,.48);
}

.vf_tl { left: 18px; top: 18px; border-left: 1px solid; border-top: 1px solid; }
.vf_tr { right: 18px; top: 18px; border-right: 1px solid; border-top: 1px solid; }
.vf_bl { left: 18px; bottom: 44px; border-left: 1px solid; border-bottom: 1px solid; }
.vf_br { right: 18px; bottom: 44px; border-right: 1px solid; border-bottom: 1px solid; }

.production_subject {
    position: absolute;
    left: 50%;
    top: 45%;
    width: 112px;
    height: 190px;
    transform: translate(-50%, -50%);
}

.production_subject i {
    position: absolute;
    left: 50%;
    top: 0;
    width: 54px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #3d4448;
    transform: translateX(-50%);
}

.production_subject span {
    position: absolute;
    left: 50%;
    top: 58px;
    width: 92px;
    height: 132px;
    border-radius: 48% 48% 16% 16%;
    background: linear-gradient(#353c40, #252b2e);
    transform: translateX(-50%);
}

.production_focus_box {
    position: absolute;
    left: 50%;
    top: 42%;
    width: 142px;
    height: 142px;
    border: 1px solid #ff5a1f;
    transform: translate(-50%, -50%);
    animation: productionFocus 4.8s cubic-bezier(.2,.75,.2,1) infinite;
}

.production_focus_box i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    border: 1px solid #ff5a1f;
    transform: translate(-50%, -50%);
}

@keyframes productionFocus {
    0%, 100% { width: 142px; height: 142px; transform: translate(-50%, -50%) translateX(0); }
    42% { width: 92px; height: 92px; transform: translate(-50%, -50%) translateX(0); }
    62% { width: 92px; height: 92px; transform: translate(-50%, -50%) translateX(34px); }
}

.production_level {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 96px;
    height: 7px;
    border: 1px solid rgba(243,240,232,.22);
    transform: translateX(-50%);
}

.production_level i {
    position: absolute;
    left: 50%;
    top: -3px;
    width: 2px;
    height: 11px;
    background: #ff5a1f;
    animation: productionLevel 2.8s ease-in-out infinite;
}

@keyframes productionLevel {
    0%, 100% { transform: translateX(-18px); }
    50% { transform: translateX(18px); }
}

.production_exposure {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 54px;
    display: grid;
    grid-template-columns: auto repeat(3, 1fr) auto repeat(3, 1fr) auto;
    align-items: center;
    gap: 8px;
    color: #8f8c85;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
}

.production_exposure i {
    display: block;
    height: 1px;
    background: rgba(243,240,232,.3);
}

.production_exposure strong { color: #ff5a1f; }

.production_readout {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 18px;
    display: flex;
    gap: 22px;
    color: #b7b4ad;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .06em;
}

.production_readout strong {
    margin-left: auto;
    color: #ff5a1f;
}

.post_preview {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 8px;
    min-height: 180px;
}

.post_preview > span {
    color: #6e6b65;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .12em;
}

.post_preview_frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(243,240,232,.14);
    background:
        linear-gradient(135deg, rgba(255,90,31,.18), transparent 44%),
        #171c1f;
}

.post_preview_frame i {
    position: absolute;
    inset: 18% 28%;
    border: 1px solid rgba(243,240,232,.26);
    transform: rotate(-4deg);
}

.post_preview_frame strong {
    position: absolute;
    right: 12px;
    bottom: 10px;
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .1em;
}

.post_timeline {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 14px 0 0;
}

.timeline_ruler {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    height: 8px;
}

.timeline_ruler i { border-left: 1px solid rgba(243,240,232,.18); }

.timeline_track {
    min-height: 36px;
    border: 1px solid rgba(243,240,232,.1);
    background: rgba(255,255,255,.018);
}

.video_track {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1.5fr .9fr;
    gap: 3px;
    padding: 3px;
}

.video_track span {
    background: linear-gradient(135deg, rgba(255,90,31,.54), rgba(255,90,31,.13));
    transform-origin: left;
}

.demo_post.is_active .video_track span { animation: clipIn 640ms ease both; }
.demo_post.is_active .video_track span:nth-child(2) { animation-delay: 90ms; }
.demo_post.is_active .video_track span:nth-child(3) { animation-delay: 160ms; }
.demo_post.is_active .video_track span:nth-child(4) { animation-delay: 230ms; }

@keyframes clipIn { from { transform: scaleX(.1); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }

.text_track {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16%;
    align-items: center;
    padding: 4px 14px;
}

.text_track span {
    padding: 5px 8px;
    background: rgba(243,240,232,.1);
    color: #9c9992;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 7px;
    letter-spacing: .08em;
}

.audio_track {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
}

.audio_track i {
    flex: 1;
    height: calc(7px + var(--wave, 10px));
    background: #7e7b74;
}

.audio_track i:nth-child(2n) { height: 18px; }
.audio_track i:nth-child(3n) { height: 26px; }
.audio_track i:nth-child(5n) { height: 12px; }

.timeline_playhead {
    position: absolute;
    z-index: 5;
    top: 8px;
    bottom: 0;
    left: 8%;
    width: 1px;
    background: #ff5a1f;
}

.timeline_playhead i {
    position: absolute;
    left: 50%;
    top: -3px;
    width: 8px;
    height: 8px;
    background: #ff5a1f;
    transform: translateX(-50%) rotate(45deg);
}

.demo_post.is_active .timeline_playhead { animation: playheadMove 4.8s linear infinite; }
@keyframes playheadMove { from { left: 8%; } to { left: 92%; } }

.motion_demo_toolbar {
    display: flex;
    gap: 8px;
}

.motion_demo_toolbar button {
    padding: 8px 10px;
    border: 1px solid rgba(243,240,232,.16);
    background: transparent;
    color: #75726c;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .1em;
    cursor: pointer;
}

.motion_demo_toolbar button:hover,
.motion_demo_toolbar button.is_active {
    border-color: #ff5a1f;
    color: #f3f0e8;
    background: rgba(255,90,31,.08);
}

.motion_canvas {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.motion_curve {
    position: absolute;
    inset: 20px 0 0;
    width: 100%;
    height: calc(100% - 20px);
    overflow: visible;
}

.motion_grid_path,
.motion_path {
    fill: none;
    vector-effect: non-scaling-stroke;
}

.motion_grid_path { stroke: rgba(243,240,232,.14); stroke-width: 1; }
.motion_path { stroke: #ff5a1f; stroke-width: 2; opacity: 0; transition: opacity 180ms ease; }
.demo_motion.is_linear .motion_path_linear,
.demo_motion.is_ease .motion_path_ease,
.demo_motion.is_overshoot .motion_path_overshoot { opacity: 1; }
.motion_keyframe { fill: #0f1214; stroke: #f3f0e8; stroke-width: 2; vector-effect: non-scaling-stroke; }

.motion_object {
    position: absolute;
    left: 8%;
    bottom: 12%;
    width: 24px;
    height: 24px;
    background: #ff5a1f;
    box-shadow: 0 0 0 10px rgba(255,90,31,.09);
}

.demo_motion.is_active .motion_object { animation: motionEase 2.4s infinite alternate; }
.demo_motion.is_linear .motion_object { animation-timing-function: linear; }
.demo_motion.is_ease .motion_object { animation-timing-function: cubic-bezier(.2,.75,.2,1); }
.demo_motion.is_overshoot .motion_object { animation-timing-function: cubic-bezier(.34,1.56,.64,1); }

@keyframes motionEase {
    from { left: 8%; bottom: 12%; transform: rotate(0deg) scale(.86); }
    to { left: 86%; bottom: 78%; transform: rotate(135deg) scale(1.18); }
}

.motion_value {
    position: absolute;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .1em;
}

.motion_value_x { left: 0; bottom: 2px; }
.motion_value_t { right: 0; top: 28px; }

.data_signal_chart {
    position: relative;
    min-height: 318px;
    overflow: hidden;
    border-left: 1px solid rgba(243,240,232,.12);
    border-bottom: 1px solid rgba(243,240,232,.12);
}

.signal_bars {
    position: absolute;
    inset: 24px 14px 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    align-items: end;
}

.signal_bars i {
    height: var(--bar);
    background: linear-gradient(to top, rgba(255,90,31,.42), rgba(255,90,31,.04));
    transform: scaleY(.05);
    transform-origin: bottom;
}

.demo_data.is_active .signal_bars i { animation: barGrow 620ms ease forwards; }
.demo_data.is_active .signal_bars i:nth-child(2) { animation-delay: 70ms; }
.demo_data.is_active .signal_bars i:nth-child(3) { animation-delay: 120ms; }
.demo_data.is_active .signal_bars i:nth-child(4) { animation-delay: 180ms; }
.demo_data.is_active .signal_bars i:nth-child(5) { animation-delay: 230ms; }
.demo_data.is_active .signal_bars i:nth-child(6) { animation-delay: 280ms; }
@keyframes barGrow { to { transform: scaleY(1); } }

.data_signal_chart svg {
    position: absolute;
    inset: 20px 0 0;
    width: 100%;
    height: calc(100% - 20px);
    overflow: visible;
}

.data_signal_chart polyline {
    fill: none;
    stroke: #f3f0e8;
    stroke-width: 1.5;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    vector-effect: non-scaling-stroke;
}

.demo_data.is_active .data_signal_chart polyline { animation: drawSignal 1.2s ease 180ms forwards; }
@keyframes drawSignal { to { stroke-dashoffset: 0; } }

.data_signal_chart circle {
    fill: #0f1214;
    stroke: #ff5a1f;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.data_signal_tooltip {
    position: absolute;
    left: 53%;
    top: 12%;
    display: grid;
    gap: 3px;
    padding: 10px 12px;
    border: 1px solid rgba(255,90,31,.45);
    background: rgba(11,13,15,.92);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.data_signal_tooltip span { color: #7d7a73; font-size: 7px; letter-spacing: .1em; }
.data_signal_tooltip strong { color: #ff5a1f; font-size: 11px; }

.data_learning_loop {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 10px;
    color: #9e9b94;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .1em;
}

.data_learning_loop i {
    color: #ff5a1f;
    font-style: normal;
    text-align: center;
}

.generic_signal {
    display: grid;
    place-items: center;
    grid-template-columns: repeat(4, 52px);
    gap: 16px;
}

.generic_signal i {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(243,240,232,.18);
    background: rgba(255,90,31,.08);
    animation: genericPulse 2.4s ease-in-out infinite;
}

.generic_signal i:nth-child(2) { animation-delay: .18s; }
.generic_signal i:nth-child(3) { animation-delay: .36s; }
.generic_signal i:nth-child(4) { animation-delay: .54s; }
@keyframes genericPulse { 50% { transform: translateY(-12px); border-color: #ff5a1f; } }

.creative_module_detail {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 26px;
    background:
        radial-gradient(circle at 100% 100%, rgba(255,90,31,.11), transparent 38%),
        #121517;
}

.creative_module_detail::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,90,31,.12), transparent);
    transform: translateX(-100%);
    pointer-events: none;
}

.creative_detail_top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .11em;
}

.creative_detail_top small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #77746d;
}

.creative_detail_top small i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff5a1f;
}

.creative_detail_index {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: auto;
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.creative_detail_index span { font-size: 58px; line-height: .9; letter-spacing: -.08em; }
.creative_detail_index small { color: #5f5c56; font-size: 9px; }

.creative_module_detail h3 {
    margin: 18px 0 0;
    color: #f3f0e8;
    font-size: clamp(36px, 3.3vw, 62px);
    line-height: .94;
    letter-spacing: -.06em;
}

.creative_module_detail > p {
    margin: 20px 0 0;
    color: #9c9992;
    line-height: 1.62;
}

.creative_detail_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
}

.creative_detail_tags span {
    padding: 7px 9px;
    border: 1px solid rgba(243,240,232,.16);
    color: #b7b4ad;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 7px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.creative_next_module {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-top: 28px;
    padding: 14px 0 0;
    border: 0;
    border-top: 1px solid rgba(243,240,232,.16);
    background: transparent;
    color: #8a877f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .11em;
    cursor: pointer;
}

.creative_next_module i {
    color: #ff5a1f;
    font-size: 18px;
    font-style: normal;
    transition: transform 180ms ease;
}

.creative_next_module:hover { color: #f3f0e8; }
.creative_next_module:hover i { transform: translate(3px, 3px); }

.career_story {
    margin-top: 22px;
}

.career_story_header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    align-items: end;
    gap: 48px;
    padding: 34px 36px;
    border-bottom: 1px solid rgba(243,240,232,.18);
}

.career_story_header h3 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(44px, 5vw, 82px);
    line-height: .94;
    letter-spacing: -.058em;
}

.career_story_header > p {
    margin: 0;
    color: #8f8c85;
    font-size: 16px;
    line-height: 1.6;
}

.career_timeline_rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 34px 34px 30px;
    border-bottom: 1px solid rgba(243,240,232,.18);
}

.career_timeline_rail::before,
.career_timeline_progress {
    content: "";
    position: absolute;
    left: calc(12.5% + 34px);
    right: calc(12.5% + 34px);
    top: 49px;
    height: 1px;
}

.career_timeline_rail::before { background: rgba(243,240,232,.16); }

.career_timeline_progress {
    background: #ff5a1f;
    transform: scaleX(var(--career-progress));
    transform-origin: left center;
    transition: transform 480ms cubic-bezier(.2,.75,.2,1);
}

.career_timeline_node {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 12px;
    min-width: 0;
    padding: 0 14px;
    border: 0;
    background: transparent;
    color: #6f6c66;
    text-align: center;
    cursor: pointer;
}

.career_timeline_node > span {
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .1em;
}

.career_timeline_node > i {
    display: block;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(243,240,232,.3);
    border-radius: 50%;
    background: #101315;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.career_timeline_node > strong {
    color: #96938c;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .1em;
}

.career_timeline_node > small {
    max-width: 190px;
    color: #77746d;
    font-size: 11px;
    line-height: 1.35;
}

.career_timeline_node:hover > i,
.career_timeline_node.is_active > i {
    border-color: #ff5a1f;
    background: #ff5a1f;
    box-shadow: 0 0 0 7px rgba(255,90,31,.1);
    transform: scale(1.08);
}

.career_timeline_node.is_active > strong,
.career_timeline_node.is_active > small {
    color: #f3f0e8;
}

.career_story_detail {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    min-height: 320px;
}

.career_story_detail.is_switching {
    animation: careerDetailIn 360ms ease;
}

@keyframes careerDetailIn {
    from { opacity: .4; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.career_story_main {
    padding: 38px;
    border-right: 1px solid rgba(243,240,232,.18);
}

.career_story_main > p:first-child {
    margin: 0 0 14px;
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    letter-spacing: .12em;
}

.career_story_main h3 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(36px, 4.1vw, 70px);
    line-height: .96;
    letter-spacing: -.055em;
}

.career_story_main > strong {
    display: block;
    margin-top: 18px;
    color: #b1aea7;
    font-size: 14px;
}

.career_story_main > p:last-child {
    max-width: 760px;
    margin: 24px 0 0;
    color: #8e8b84;
    font-size: 16px;
    line-height: 1.65;
}

.career_story_fact {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    background: linear-gradient(145deg, rgba(255,90,31,.08), transparent 58%);
}

.career_story_fact > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(243,240,232,.16);
}

.career_story_fact span {
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.career_story_fact > div strong {
    color: #f3f0e8;
    font-size: 48px;
    line-height: .8;
    letter-spacing: -.08em;
}

.career_story_fact > span {
    display: block;
    margin-top: 28px;
}

.career_story_fact > p {
    margin: 12px 0 0;
    color: #aaa7a0;
    line-height: 1.6;
}

.nw_interaction_minimal .creative_system_status i,
.nw_interaction_minimal .profile_visual_scan,
.nw_interaction_minimal .production_focus_box,
.nw_interaction_minimal .production_level i,
.nw_interaction_minimal .timeline_playhead,
.nw_interaction_minimal .motion_object,
.nw_interaction_minimal .generic_signal i {
    animation: none !important;
}

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

    .creative_profile_visual {
        min-height: 640px;
    }

    .creative_portrait_frame {
        inset: 58px 24px 142px;
    }

    .creative_demo_console {
        grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
    }
}

@media (max-width: 980px) {
    .creative_system_header,
    .career_story_header {
        grid-template-columns: 1fr;
    }

    .creative_system_status {
        justify-self: start;
    }

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

    .creative_module_tab:nth-child(2) { border-right: 0; }
    .creative_module_tab:nth-child(-n+2) { border-bottom: 1px solid rgba(243,240,232,.14); }

    .creative_demo_console,
    .career_story_detail {
        grid-template-columns: 1fr;
    }

    .creative_demo_stage,
    .career_story_main {
        border-right: 0;
        border-bottom: 1px solid rgba(243,240,232,.18);
    }

    .creative_module_detail {
        min-height: 390px;
    }

    .career_timeline_rail {
        overflow-x: auto;
        grid-template-columns: repeat(4, minmax(190px, 1fr));
    }
}

@media (max-width: 680px) {
    .creative_system {
        padding: 92px 0 82px;
    }

    .creative_system_header h2 {
        font-size: clamp(50px, 15vw, 78px);
    }

    .creative_system_status {
        min-width: 0;
        width: 100%;
    }

    .creative_profile_visual {
        min-height: 560px;
    }

    .creative_portrait_frame {
        inset: 54px 12px 150px;
    }

    .profile_visual_readout_side {
        display: none;
    }

    .creative_profile_caption {
        padding: 20px;
    }

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

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

    .creative_module_tab {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(243,240,232,.14);
    }

    .creative_module_tab > span {
        margin-bottom: 10px;
    }

    .creative_demo_stage {
        min-height: 520px;
    }

    .creative_demo {
        padding: 18px;
    }

    .demo_caption {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .production_viewfinder,
    .motion_canvas,
    .data_signal_chart {
        min-height: 300px;
    }

    .creative_module_detail {
        padding: 22px;
    }

    .career_story_header,
    .career_story_main,
    .career_story_fact {
        padding: 24px;
    }

    .career_timeline_rail {
        padding-inline: 18px;
    }

    .career_timeline_rail::before,
    .career_timeline_progress {
        left: calc(95px + 18px);
        right: calc(95px + 18px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .creative_system *,
    .creative_system *::before,
    .creative_system *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   FINAL SYSTEM LAYER
   Consolidated CMS, section themes, lens video and media cards
   ========================================================= */

:root {
    --nw-section-text: currentColor;
    --nw-section-secondary: currentColor;
    --nw-section-line: rgba(127, 127, 127, 0.24);
    --nw-section-accent: var(--nw-orange);
}

body {
    background: var(--nw-offwhite);
    color: var(--nw-text);
    font-size: var(--nw-font-body);
}

.shell {
    width: min(100% - 48px, var(--nw-shell));
}

.prose {
    max-width: var(--nw-text-width);
}

.eyebrow,
.status_line,
.work_meta,
.panel_label,
.v3_chapter_index,
.v3_visual_head,
.offer_top,
.offer_fit span,
.form_counter,
.contact_form label > span,
.selected_services_field > span,
.file_upload_field > span,
.lens_story_scroll_label {
    font-size: var(--nw-font-label);
}

.v3_chapter_lead,
.v3_positioning_copy > p,
.lens_story_intro,
.contact_intro > p:not(.eyebrow),
.about_lead {
    font-size: var(--nw-font-body);
}

.nw_service_video_copy > p,
.offer_card > p,
.offer_card li,
.journal_card > p,
.v3_proof_copy > p:not(.work_meta) {
    font-size: var(--nw-font-card);
}

/* Section background logic. Auto keeps the authored design. */
[data-nw-section][data-nw-theme="light"] {
    background: var(--nw-offwhite) !important;
    color: var(--nw-text) !important;
    --nw-section-text: var(--nw-text);
    --nw-section-secondary: var(--nw-secondary);
    --nw-section-line: rgba(11, 13, 15, 0.18);
    --nw-section-accent: var(--nw-orange);
}

[data-nw-section][data-nw-theme="dark"] {
    background: var(--nw-graphit) !important;
    color: var(--nw-offwhite) !important;
    --nw-section-text: var(--nw-offwhite);
    --nw-section-secondary: #aaa7a0;
    --nw-section-line: rgba(243, 240, 232, 0.16);
    --nw-section-accent: var(--nw-orange);
}

[data-nw-section][data-nw-theme="accent"] {
    background: var(--nw-orange) !important;
    color: var(--nw-graphit) !important;
    --nw-section-text: var(--nw-graphit);
    --nw-section-secondary: rgba(11, 13, 15, 0.72);
    --nw-section-line: rgba(11, 13, 15, 0.22);
    --nw-section-accent: var(--nw-graphit);
}

[data-nw-section][data-nw-theme="custom"] {
    background: var(--nw-section-bg, var(--nw-offwhite)) !important;
}

[data-nw-section]:not([data-nw-theme="auto"]) h1,
[data-nw-section]:not([data-nw-theme="auto"]) h2,
[data-nw-section]:not([data-nw-theme="auto"]) h3,
[data-nw-section]:not([data-nw-theme="auto"]) h4,
[data-nw-section]:not([data-nw-theme="auto"]) strong,
[data-nw-section]:not([data-nw-theme="auto"]) .text_link {
    color: var(--nw-section-text) !important;
}

[data-nw-section]:not([data-nw-theme="auto"]) p,
[data-nw-section]:not([data-nw-theme="auto"]) small,
[data-nw-section]:not([data-nw-theme="auto"]) .work_meta,
[data-nw-section]:not([data-nw-theme="auto"]) .eyebrow,
[data-nw-section]:not([data-nw-theme="auto"]) .v3_chapter_lead {
    color: var(--nw-section-secondary) !important;
}

[data-nw-section]:not([data-nw-theme="auto"]) .eyebrow,
[data-nw-section]:not([data-nw-theme="auto"]) .work_index,
[data-nw-section]:not([data-nw-theme="auto"]) .service_number,
[data-nw-section]:not([data-nw-theme="auto"]) .v3_chapter_index span:first-child,
[data-nw-section]:not([data-nw-theme="auto"]) .text_link span {
    color: var(--nw-section-accent) !important;
}

[data-nw-section]:not([data-nw-theme="auto"]) .v3_mode_card,
[data-nw-section]:not([data-nw-theme="auto"]) .nw_service_video_card,
[data-nw-section]:not([data-nw-theme="auto"]) .offer_card,
[data-nw-section]:not([data-nw-theme="auto"]) .journal_card,
[data-nw-section]:not([data-nw-theme="auto"]) .case_facts,
[data-nw-section]:not([data-nw-theme="auto"]) .story_step,
[data-nw-section]:not([data-nw-theme="auto"]) .section_head,
[data-nw-section]:not([data-nw-theme="auto"]) .offers_note {
    border-color: var(--nw-section-line) !important;
}

/* Hero brightness and overlay controls. */
.v3_hero_video {
    opacity: 0.92;
    filter: brightness(var(--nw-hero-brightness)) saturate(0.92) contrast(1.02);
}

.v3_hero_scrim {
    background:
        linear-gradient(90deg,
            rgb(7 9 11 / var(--nw-hero-overlay)) 0%,
            rgb(7 9 11 / calc(var(--nw-hero-overlay) * 0.72)) 46%,
            rgb(7 9 11 / calc(var(--nw-hero-overlay) * 0.28)) 100%),
        linear-gradient(180deg,
            rgb(7 9 11 / calc(var(--nw-hero-overlay) * 0.20)) 0%,
            rgb(7 9 11 / calc(var(--nw-hero-overlay) * 0.14)) 58%,
            rgb(7 9 11 / calc(var(--nw-hero-overlay) * 0.78)) 100%);
}

/* Three service cards with independent videos from the WordPress media library. */
.nw_service_entry_section {
    padding-top: 118px;
    padding-bottom: 128px;
}

.nw_service_video_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 72px;
}

.nw_service_video_card {
    min-width: 0;
}

.nw_service_video_media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(11, 13, 15, 0.18);
    background: #111416;
}

.nw_service_video_media video,
.nw_service_video_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 720ms cubic-bezier(.2, .75, .2, 1), filter 420ms ease;
}

.nw_service_video_card:hover .nw_service_video_media video,
.nw_service_video_card:hover .nw_service_video_media img {
    transform: scale(1.035);
    filter: contrast(1.04);
}

.nw_service_video_placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: end;
    gap: 8px;
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        radial-gradient(circle at 72% 28%, rgba(255, 90, 31, .18), transparent 24%),
        #111416;
    background-size: 42px 42px, 42px 42px, auto, auto;
    color: var(--nw-offwhite);
}

.nw_service_video_placeholder i {
    position: absolute;
    top: 14%;
    right: 12%;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid rgba(243, 240, 232, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(255, 255, 255, .018);
}

.nw_service_video_placeholder strong,
.nw_service_video_placeholder small {
    position: relative;
    z-index: 2;
}

.nw_service_video_placeholder strong {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: var(--nw-font-small);
    letter-spacing: .12em;
}

.nw_service_video_placeholder small {
    max-width: 86%;
    color: #a7a49d;
    font-size: var(--nw-font-small);
    line-height: 1.5;
}

.nw_service_video_code,
.nw_service_video_hint {
    position: absolute;
    z-index: 3;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: var(--nw-font-small);
    font-weight: 800;
    letter-spacing: .1em;
}

.nw_service_video_code {
    top: 18px;
    left: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--nw-orange);
    color: var(--nw-graphit);
}

.nw_service_video_hint {
    right: 18px;
    bottom: 16px;
    color: var(--nw-offwhite);
    text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

.nw_service_video_copy {
    padding-top: 22px;
}

.nw_service_video_copy h3 {
    margin: 0;
    font-size: clamp(34px, 3.3vw, 56px);
    line-height: .98;
    letter-spacing: -.055em;
}

.nw_service_video_copy > p:not(.work_meta) {
    min-height: 78px;
    margin: 16px 0 22px;
    color: var(--nw-secondary);
    line-height: 1.6;
}

/* Lens video scroll sequence. */
.production_story.lens_story {
    position: relative;
    min-height: 380vh;
    padding: 0;
    background: var(--nw-graphit);
    color: var(--nw-offwhite);
}

.lens_story_sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.lens_story_media,
.lens_story_scrim {
    position: absolute;
    inset: 0;
}

.lens_story_media {
    z-index: 0;
    background: #07090b;
}

.lens_story_video,
.lens_story_poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(var(--nw-lens-brightness)) saturate(var(--nw-lens-saturation)) contrast(.98);
}

.lens_story_fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 68% 34%, rgba(36, 55, 74, .48), transparent 30%),
        #080a0c;
}

.lens_story_fallback img {
    width: min(66vw, 980px);
    opacity: .52;
}

.lens_story_fallback span {
    position: absolute;
    right: 28px;
    bottom: 24px;
    color: #8d8a83;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: var(--nw-font-small);
    letter-spacing: .12em;
}

.lens_story_scrim {
    background:
        linear-gradient(90deg,
            rgb(4 6 8 / calc(var(--nw-lens-overlay) * 1.32)) 0%,
            rgb(4 6 8 / calc(var(--nw-lens-overlay) * .86)) 38%,
            rgb(4 6 8 / calc(var(--nw-lens-overlay) * .30)) 72%,
            rgb(4 6 8 / calc(var(--nw-lens-overlay) * .58)) 100%),
        linear-gradient(180deg,
            rgb(4 6 8 / calc(var(--nw-lens-overlay) * .22)) 0%,
            transparent 48%,
            rgb(4 6 8 / calc(var(--nw-lens-overlay) * .76)) 100%);
    pointer-events: none;
}

.lens_story_layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 860px) 90px;
    justify-content: space-between;
    gap: 72px;
    align-items: center;
    min-height: 100svh;
    padding-top: 126px;
    padding-bottom: 72px;
}

.lens_story_copy {
    max-width: 860px;
}

.lens_story_copy h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(52px, 5.2vw, 88px);
    line-height: .94;
    letter-spacing: -.062em;
    text-wrap: balance;
}

.lens_story_intro {
    max-width: 790px;
    margin: 28px 0 0;
    color: #c4c0b8;
    line-height: 1.58;
    letter-spacing: -.018em;
}

.lens_story_steps {
    margin-top: 38px;
    border-top: 1px solid rgba(243, 240, 232, .18);
}

.lens_story_step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    min-height: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(243, 240, 232, .15);
    opacity: .46;
    transform: none;
    transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.lens_story_step.is_active {
    opacity: 1;
    transform: translateX(8px);
}

.lens_story_step > span {
    color: var(--nw-orange);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: var(--nw-font-small);
    padding-top: 4px;
}

.lens_story_step h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.lens_story_step p {
    margin: 5px 0 0;
    color: #aaa7a0;
    font-size: var(--nw-font-small);
    line-height: 1.5;
}

.lens_story_status {
    align-self: stretch;
    display: grid;
    grid-template-rows: auto 1fr auto;
    justify-items: center;
    min-height: 66vh;
    padding: 8px 0;
}

.lens_story_phase {
    display: grid;
    justify-items: center;
    gap: 6px;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.lens_story_phase span {
    color: var(--nw-orange);
    font-size: var(--nw-font-small);
}

.lens_story_phase strong {
    max-width: 90px;
    color: var(--nw-offwhite);
    font-size: var(--nw-font-small);
    letter-spacing: .09em;
    text-align: center;
}

.lens_story_progress {
    position: relative;
    width: 2px;
    height: 100%;
    min-height: 320px;
    margin: 22px 0;
    background: rgba(243, 240, 232, .14);
}

.lens_story_progress i {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--nw-orange);
    transform: scaleY(0);
    transform-origin: top;
    will-change: transform;
}

.lens_story_scroll_label {
    color: #87847d;
    letter-spacing: .11em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* Offer selection and price logic. */
.offer_price {
    margin: 14px 0 0 !important;
    color: var(--nw-orange) !important;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: clamp(18px, 1.8vw, 28px) !important;
    font-weight: 800;
    letter-spacing: -.02em;
}

.offer_card_accent .offer_price {
    color: var(--nw-graphit) !important;
}

.offer_card {
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.offer_card.is_selected {
    border-color: var(--nw-orange) !important;
    box-shadow: inset 0 0 0 2px var(--nw-orange), 0 22px 60px rgba(0, 0, 0, .18);
    transform: translateY(-4px);
}

.offer_actions {
    display: grid;
    gap: 18px;
    align-items: start;
}

.offer_select_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(243, 240, 232, .24);
    background: transparent;
    color: var(--nw-offwhite);
    font-weight: 800;
    cursor: pointer;
}

.offer_select_button i {
    color: var(--nw-orange);
    font-size: 20px;
    font-style: normal;
}

.offer_select_button[aria-pressed="true"] {
    background: var(--nw-orange);
    color: var(--nw-graphit);
    border-color: var(--nw-orange);
}

.offer_select_button[aria-pressed="true"] i,
.offer_card_accent .offer_select_button i {
    color: var(--nw-graphit);
}

.offer_card_accent .offer_select_button {
    border-color: rgba(11, 13, 15, .32);
    color: var(--nw-graphit);
}

/* Contact form additions. */
.selected_services_field {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid #c9c4b9;
    background: #ebe7dd;
}

.selected_services_field[hidden] {
    display: none;
}

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

.selected_service_chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border: 0;
    background: var(--nw-graphit);
    color: var(--nw-offwhite);
    font-size: var(--nw-font-small);
    cursor: pointer;
}

.selected_service_chip i {
    color: var(--nw-orange);
    font-size: 18px;
    font-style: normal;
}

.file_upload_field {
    padding: 18px 0;
    border-top: 1px solid #bdb8ac;
    border-bottom: 1px solid #bdb8ac;
}

.file_upload_field > span {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.file_upload_field > span small {
    color: #77746d;
    font-size: inherit;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.file_upload_field input[type="file"] {
    border: 0;
    padding: 10px 0 4px;
}

.file_upload_field strong {
    color: #66625b;
    font-size: var(--nw-font-small);
    font-weight: 600;
}

@media (max-width: 1000px) {
    .nw_service_video_grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .nw_service_video_copy > p:not(.work_meta) {
        min-height: 0;
    }

    .lens_story_layout {
        grid-template-columns: 1fr 58px;
        gap: 30px;
    }
}

@media (max-width: 700px) {
    .shell {
        width: min(100% - 24px, var(--nw-shell));
    }

    .production_story.lens_story {
        min-height: 340vh;
    }

    .lens_story_layout {
        grid-template-columns: 1fr;
        padding-top: 112px;
        padding-bottom: 34px;
    }

    .lens_story_status {
        display: none;
    }

    .lens_story_copy h2 {
        font-size: clamp(44px, 13vw, 66px);
    }

    .lens_story_intro {
        font-size: 17px;
    }

    .lens_story_step {
        grid-template-columns: 42px 1fr;
        padding: 13px 0;
    }

    .nw_service_video_grid {
        margin-top: 50px;
    }

    .nw_service_video_copy h3 {
        font-size: clamp(36px, 11vw, 52px);
    }

    .file_upload_field > span {
        flex-direction: column;
        gap: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .production_story.lens_story {
        min-height: auto;
    }

    .lens_story_sticky {
        position: relative;
        min-height: auto;
    }

    .lens_story_layout {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 90px;
    }

    .lens_story_step {
        opacity: 1;
        transform: none !important;
    }

    .lens_story_video,
    .nw_service_video_media video {
        transition: none !important;
    }
}

[data-nw-section][data-nw-custom-colors="1"] h1,
[data-nw-section][data-nw-custom-colors="1"] h2,
[data-nw-section][data-nw-custom-colors="1"] h3,
[data-nw-section][data-nw-custom-colors="1"] h4,
[data-nw-section][data-nw-custom-colors="1"] strong,
[data-nw-section][data-nw-custom-colors="1"] .text_link {
    color: var(--nw-section-text, currentColor) !important;
}

[data-nw-section][data-nw-custom-colors="1"] p,
[data-nw-section][data-nw-custom-colors="1"] small,
[data-nw-section][data-nw-custom-colors="1"] .work_meta,
[data-nw-section][data-nw-custom-colors="1"] .eyebrow {
    color: var(--nw-section-secondary, currentColor) !important;
}

[data-nw-section][data-nw-custom-colors="1"] .eyebrow,
[data-nw-section][data-nw-custom-colors="1"] .work_index,
[data-nw-section][data-nw-custom-colors="1"] .text_link span {
    color: var(--nw-section-accent, var(--nw-orange)) !important;
}

.offer_card_accent .offer_select_button[aria-pressed="true"] {
    background: var(--nw-graphit);
    color: var(--nw-offwhite);
    border-color: var(--nw-graphit);
}

.offer_card_accent .offer_select_button[aria-pressed="true"] i {
    color: var(--nw-orange);
}


/* =========================================================
   VIDEO TILE LAYER
   Replaceable loop videos in service, proof and project world tiles
   ========================================================= */

.nw_tile_video_placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: end;
    gap: 8px;
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        radial-gradient(circle at 72% 28%, rgba(255, 90, 31, .18), transparent 24%),
        #111416;
    background-size: 42px 42px, 42px 42px, auto, auto;
    color: var(--nw-offwhite);
}

.nw_tile_video_placeholder i {
    position: absolute;
    top: 14%;
    right: 12%;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid rgba(243, 240, 232, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(255, 255, 255, .018);
}

.nw_tile_video_placeholder strong,
.nw_tile_video_placeholder small {
    position: relative;
    z-index: 2;
}

.nw_tile_video_placeholder strong {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: var(--nw-font-small);
    letter-spacing: .12em;
}

.nw_tile_video_placeholder small {
    max-width: 84%;
    color: #a7a49d;
    font-size: var(--nw-font-small);
    line-height: 1.45;
}

.v3_proof_media .nw_tile_video_placeholder {
    padding-bottom: 58px;
}

.v3_world_card {
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.v3_world_media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid #c9c4b9;
    background: #111416;
}

.v3_world_media video,
.v3_world_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 720ms cubic-bezier(.2,.75,.2,1), filter 420ms ease;
}

.v3_world_card:hover .v3_world_media video,
.v3_world_card:hover .v3_world_media img {
    transform: scale(1.035);
    filter: contrast(1.04);
}

.v3_world_media_code,
.v3_world_media_hint {
    position: absolute;
    z-index: 3;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: var(--nw-font-small);
    font-weight: 800;
    letter-spacing: .1em;
}

.v3_world_media_code {
    top: 18px;
    left: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--nw-orange);
    color: var(--nw-graphit);
}

.v3_world_media_hint {
    right: 18px;
    bottom: 16px;
    color: var(--nw-offwhite);
    text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

.v3_world_body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px 26px 30px;
}

.v3_world_body > span,
.v3_world_body small {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: var(--nw-font-small);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.v3_world_body > span {
    color: var(--nw-orange);
}

.v3_world_body h3 {
    margin-top: 62px;
}

.v3_world_body p {
    flex: 1;
}

.v3_world_body small {
    color: #77746d;
}

@media (max-width: 900px) {
    .v3_world_body h3 {
        margin-top: 42px;
    }
}

@media (max-width: 620px) {
    .nw_tile_video_placeholder {
        padding: 22px;
    }

    .v3_world_body {
        padding: 24px 22px 26px;
    }

    .v3_world_body h3 {
        margin-top: 34px;
    }
}

/* ==========================================================
   V5.8 DELIVERY BUILDER
   Functional output selector for the agency production section
   ========================================================== */
.v3_delivery_builder {
    min-height: 760px;
}

.v3_delivery_console {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    padding: 20px 18px 24px;
    border: 1px solid rgba(243, 240, 232, 0.12);
    background: #0d1013;
    overflow: hidden;
}

.v3_delivery_stage_labels,
.v3_delivery_stage_track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
}

.v3_delivery_stage_labels {
    color: #68665f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.1em;
}

.v3_delivery_stage_track {
    margin-top: 16px;
}

.v3_delivery_stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    min-width: 0;
}

.v3_delivery_stage i {
    min-height: 48px;
    background: #29323a;
    opacity: 0.42;
    transform: scaleY(0.72);
    transform-origin: bottom;
    transition: background 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.v3_delivery_stage i:nth-child(2) {
    min-height: 38px;
}

.v3_delivery_stage i:nth-child(3) {
    min-height: 28px;
}

.v3_delivery_stage i.is_active {
    background: #ff5a1f;
    opacity: 1;
    transform: scaleY(1);
}

.v3_delivery_playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10%;
    width: 1px;
    background: #ff5a1f;
    box-shadow: 0 0 16px rgba(255, 90, 31, 0.68);
    transition: left 520ms cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
}

.v3_delivery_catalog {
    position: relative;
    z-index: 2;
    display: grid;
    margin-top: 22px;
    border-top: 1px solid rgba(243, 240, 232, 0.14);
}

.v3_delivery_item {
    appearance: none;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 12px;
    align-items: start;
    width: 100%;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(243, 240, 232, 0.12);
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: padding 180ms ease, background 180ms ease;
}

.v3_delivery_item:hover,
.v3_delivery_item:focus-visible,
.v3_delivery_item.is_preview {
    padding-inline: 10px;
    background: rgba(243, 240, 232, 0.035);
    outline: none;
}

.v3_delivery_item.is_selected {
    padding-inline: 10px;
    background: linear-gradient(90deg, rgba(255, 90, 31, 0.12), transparent 72%);
}

.v3_delivery_number,
.v3_delivery_copy small {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v3_delivery_number {
    padding-top: 3px;
    color: #ff5a1f;
}

.v3_delivery_copy {
    display: block;
    min-width: 0;
}

.v3_delivery_copy small {
    display: block;
    color: #77746d;
}

.v3_delivery_copy strong {
    display: block;
    margin-top: 3px;
    color: #f3f0e8;
    font-size: 21px;
    letter-spacing: -0.035em;
}

.v3_delivery_copy > span {
    display: block;
    margin-top: 6px;
    color: #9b9891;
    font-size: 13px;
    line-height: 1.5;
}

.v3_delivery_toggle {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(243, 240, 232, 0.22);
    color: #ff5a1f;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 16px;
    line-height: 1;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.v3_delivery_item.is_selected .v3_delivery_toggle {
    border-color: #ff5a1f;
    background: #ff5a1f;
    color: #0b0d0f;
}

.v3_delivery_summary {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(243, 240, 232, 0.14);
}

.v3_delivery_summary > div > span {
    display: block;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.12em;
}

.v3_delivery_summary > div > strong {
    display: block;
    margin-top: 7px;
    color: #f3f0e8;
    font-size: 13px;
    line-height: 1.45;
}

.v3_delivery_apply {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #ff5a1f;
    background: #ff5a1f;
    color: #0b0d0f;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.v3_delivery_apply:disabled {
    border-color: rgba(243, 240, 232, 0.14);
    background: transparent;
    color: #68665f;
    cursor: default;
}

.v3_delivery_apply:not(:disabled):hover,
.v3_delivery_apply:not(:disabled):focus-visible {
    transform: translateY(-1px);
}

@media (max-width: 1180px) {
    .v3_delivery_builder {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .v3_delivery_console {
        padding-inline: 12px;
    }

    .v3_delivery_stage_labels {
        font-size: 6px;
        letter-spacing: 0.04em;
    }

    .v3_delivery_stage_track,
    .v3_delivery_stage_labels {
        gap: 4px;
    }

    .v3_delivery_stage {
        gap: 2px;
    }

    .v3_delivery_stage i {
        min-height: 34px;
    }

    .v3_delivery_stage i:nth-child(2) {
        min-height: 28px;
    }

    .v3_delivery_stage i:nth-child(3) {
        min-height: 22px;
    }

    .v3_delivery_item {
        grid-template-columns: 26px minmax(0, 1fr) 26px;
        gap: 10px;
    }

    .v3_delivery_copy strong {
        font-size: 18px;
    }

    .v3_delivery_copy > span {
        font-size: 12px;
    }

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

    .v3_delivery_apply {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3_delivery_stage i,
    .v3_delivery_playhead,
    .v3_delivery_item,
    .v3_delivery_toggle,
    .v3_delivery_apply {
        transition: none !important;
    }
}

/* ==========================================================
   V5.9 PROJECT BUILDER AND EARLY OFFERS
   ========================================================== */
.v3_project_builder_section {
    padding-bottom: 84px;
}

.v3_project_builder_section .v3_chapter_grid {
    align-items: start;
}

.v3_delivery_builder {
    min-height: 0;
}

.v3_delivery_filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
    border-top: 1px solid rgba(243, 240, 232, 0.14);
    border-left: 1px solid rgba(243, 240, 232, 0.14);
}

.v3_delivery_filters button {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    min-height: 46px;
    padding: 11px 10px;
    border: 0;
    border-right: 1px solid rgba(243, 240, 232, 0.14);
    border-bottom: 1px solid rgba(243, 240, 232, 0.14);
    background: transparent;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.09em;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease;
}

.v3_delivery_filters button small {
    color: #5d5b55;
    font-size: 7px;
}

.v3_delivery_filters button:hover,
.v3_delivery_filters button:focus-visible {
    background: rgba(243, 240, 232, 0.04);
    color: var(--nw-offwhite);
    outline: none;
}

.v3_delivery_filters button[aria-selected="true"] {
    background: var(--nw-orange);
    color: var(--nw-graphit);
}

.v3_delivery_filters button[aria-selected="true"] small {
    color: rgba(11, 13, 15, 0.6);
}

.v3_delivery_catalog {
    margin-top: 0;
    border-top: 0;
}

.v3_delivery_item[hidden] {
    display: none;
}

.v3_delivery_item {
    min-height: 112px;
}

.v3_delivery_summary {
    grid-template-columns: minmax(0, 1.2fr) minmax(165px, 0.8fr);
    gap: 14px 22px;
}

.v3_delivery_summary_choice > span,
.v3_delivery_recommendation > span {
    display: block;
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.12em;
}

.v3_delivery_summary_choice > strong,
.v3_delivery_recommendation > strong {
    display: block;
    margin-top: 7px;
    color: var(--nw-offwhite);
    font-size: 13px;
    line-height: 1.45;
}

.v3_delivery_recommendation {
    padding-left: 18px;
    border-left: 1px solid rgba(243, 240, 232, 0.14);
}

.v3_delivery_recommendation > strong {
    color: var(--nw-orange);
    font-size: 15px;
}

.v3_delivery_recommendation > small {
    display: block;
    margin-top: 5px;
    color: #77746d;
    font-size: 10px;
    line-height: 1.4;
}

.v3_delivery_apply {
    grid-column: 1 / -1;
    width: 100%;
}

.project_builder_offers {
    margin-top: 0;
    padding-top: 86px;
    border-top: 1px solid rgba(243, 240, 232, 0.12);
    scroll-margin-top: 78px;
}

.project_builder_offers .offers_head {
    margin-bottom: 52px;
}

.project_builder_offers .offers_head h2 {
    max-width: 960px;
}


.first_project_benefit { display:grid; grid-template-columns:.55fr .9fr 1.5fr; gap:28px; align-items:center; margin:-8px 0 30px; padding:22px 0; border-top:1px solid rgba(243,240,232,.16); border-bottom:1px solid rgba(243,240,232,.16); }
.first_project_benefit_label, .offer_first_project span { color:var(--nw-orange); font-family:"IBM Plex Mono","SFMono-Regular",Consolas,monospace; font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.first_project_benefit > strong { color:var(--nw-offwhite); font-size:clamp(22px,2vw,32px); line-height:1; letter-spacing:-.035em; }
.first_project_benefit p { max-width:680px; margin:0; color:#a8a59e; font-size:var(--nw-font-card); line-height:1.55; }
.offer_first_project { display:flex; flex-wrap:wrap; align-items:baseline; gap:9px 14px; margin:12px 0 0; padding:11px 0 0; border-top:1px solid rgba(243,240,232,.14); }
.offer_first_project strong { color:var(--nw-offwhite); font-size:14px; line-height:1.35; }
.offer_card_accent .offer_first_project { border-color:rgba(11,13,15,.2); }
.offer_card_accent .offer_first_project span, .offer_card_accent .offer_first_project strong { color:var(--nw-graphit); }

.project_builder_offers .offer_card {
    position: relative;
    min-height: 560px;
}

.project_builder_offers .offer_top {
    margin-bottom: 72px;
}

.offer_card.is_recommended {
    border-color: var(--nw-orange) !important;
    box-shadow: inset 0 0 0 1px var(--nw-orange), 0 24px 70px rgba(0, 0, 0, 0.22);
}

.offer_card.is_recommended::before {
    content: "EMPFOHLEN FÜR DEINE AUSWAHL";
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 150px);
    padding: 7px 9px;
    background: var(--nw-orange);
    color: var(--nw-graphit);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
}

.offer_card_accent.is_recommended::before {
    background: var(--nw-graphit);
    color: var(--nw-offwhite);
}

.selected_project_offer {
    display: grid;
    gap: 3px;
    padding-bottom: 12px;
    border-bottom: 1px solid #c9c4b9;
}

.selected_project_offer[hidden] {
    display: none;
}

.selected_project_offer small {
    color: #77746d;
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.selected_project_offer strong {
    color: var(--nw-graphit);
    font-size: 15px;
}

@media (max-width: 900px) {
    .v3_project_builder_section {
        padding-bottom: 54px;
    }

    .project_builder_offers {
        padding-top: 66px;
    }

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

    .v3_delivery_recommendation {
        padding-top: 14px;
        padding-left: 0;
        border-top: 1px solid rgba(243, 240, 232, 0.14);
        border-left: 0;
    }
}

@media (max-width: 620px) {
    .v3_delivery_filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v3_delivery_item {
        min-height: 0;
    }

    .project_builder_offers {
        padding-top: 52px;
    }

    .project_builder_offers .offer_card {
        min-height: auto;
    }

    .offer_card.is_recommended::before {
        position: static;
        display: block;
        width: auto;
        max-width: none;
        margin: -8px 0 24px;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3_delivery_filters button {
        transition: none !important;
    }
}

/* =========================================================
   V5.10 FEATURED PACKAGE MICRO INTERACTION + CONTENT OPS
   ========================================================= */

.project_builder_offers [data_offer_featured] {
    isolation: isolate;
    overflow: hidden;
    transform-origin: 50% 50%;
    transition: transform 280ms cubic-bezier(.2, .8, .2, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.project_builder_offers [data_offer_featured]::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background-image:
        linear-gradient(rgba(11, 13, 15, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 13, 15, .11) 1px, transparent 1px);
    background-size: 32px 32px;
    transform: scale(1.04);
    transition: opacity 220ms ease, transform 320ms ease;
}

.offer_featured_hint,
.offer_selection_trigger {
    position: absolute;
    z-index: 4;
    top: 20px;
    left: 50%;
    width: max-content;
    max-width: calc(100% - 170px);
    padding: 7px 9px;
    background: var(--nw-graphit);
    color: var(--nw-offwhite);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .09em;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, 6px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms ease;
}

.offer_selection_trigger {
    color: var(--nw-orange);
}

@media (hover: hover) and (pointer: fine) {
    .project_builder_offers [data_offer_featured]:hover {
        z-index: 6;
        transform: translateY(-10px) scale(1.018);
        box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
    }

    .project_builder_offers [data_offer_featured]:hover::after {
        opacity: 1;
        transform: scale(1);
    }

    .project_builder_offers [data_offer_featured]:hover .offer_featured_hint {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    .project_builder_offers [data_offer_featured]:hover h3 {
        transform: translateX(7px);
    }
}

.project_builder_offers [data_offer_featured] h3 {
    transition: transform 260ms cubic-bezier(.2, .8, .2, 1);
}

.project_builder_offers [data_offer_featured].is_selected {
    z-index: 7;
    transform: translateY(-8px) scale(1.014);
    box-shadow: 0 34px 96px rgba(0, 0, 0, .3), inset 0 0 0 2px var(--nw-graphit);
}

.project_builder_offers [data_offer_featured].is_selected::after {
    opacity: 1;
    transform: scale(1);
    animation: nwSystemGridPulse 520ms cubic-bezier(.2, .8, .2, 1) 1;
}

.project_builder_offers [data_offer_featured].is_selected .offer_featured_hint {
    opacity: 0;
}

.project_builder_offers [data_offer_featured].is_selected .offer_selection_trigger {
    opacity: 1;
    transform: translate(-50%, 0);
    animation: nwSelectionTrigger 460ms cubic-bezier(.2, .8, .2, 1) 1;
}

@keyframes nwSystemGridPulse {
    0% { background-position: -90px 0, -90px 0; opacity: .1; }
    50% { opacity: .75; }
    100% { background-position: 90px 0, 90px 0; opacity: 1; }
}

@keyframes nwSelectionTrigger {
    0% { opacity: 0; transform: translate(-50%, 14px) scale(.96); }
    100% { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.v3_ops_console {
    align-self: center;
}

.v3_ops_console_shell {
    border: 1px solid rgba(11, 13, 15, .2);
    background: #111315;
    color: var(--nw-offwhite);
    box-shadow: 0 26px 80px rgba(11, 13, 15, .08);
}

.v3_ops_head {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(243, 240, 232, .12);
}

.v3_ops_head span {
    font-size: 12px;
    letter-spacing: .1em;
}

.v3_ops_head span:last-child {
    color: var(--nw-orange);
}

.v3_ops_stage {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    padding: 38px 38px 32px;
}

.v3_ops_stage_grid {
    position: absolute;
    inset: 0;
    opacity: .2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(243, 240, 232, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243, 240, 232, .055) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 96%);
}

.v3_ops_stage_copy,
.v3_ops_stage_visual {
    position: relative;
    z-index: 2;
}

.v3_ops_stage_copy {
    max-width: 650px;
}

.v3_ops_stage_copy > span {
    display: block;
    color: var(--nw-orange);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
}

.v3_ops_stage_copy h3 {
    max-width: 660px;
    margin: 14px 0 12px;
    color: var(--nw-offwhite);
    font-size: clamp(34px, 3.25vw, 52px);
    line-height: 1.02;
    letter-spacing: -.045em;
}

.v3_ops_stage_copy p {
    max-width: 670px;
    margin: 0;
    color: #b7b2a8;
    font-size: 16px;
    line-height: 1.65;
}

.v3_ops_stage_visual {
    min-height: 300px;
    margin-top: 36px;
}

.v3_ops_panel {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 280ms cubic-bezier(.2, .8, .2, 1);
}

.v3_ops_panel.is_active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.v3_ops_plan_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(243, 240, 232, .13);
    border: 1px solid rgba(243, 240, 232, .13);
}

.v3_ops_plan_grid > div {
    min-height: 126px;
    padding: 20px;
    background: #111315;
}

.v3_ops_plan_grid small,
.v3_ops_master_material small,
.v3_ops_signal_grid small,
.v3_ops_publish_grid small,
.v3_ops_micro_heading,
.v3_ops_takeaway span {
    color: var(--nw-orange);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}

.v3_ops_plan_grid strong {
    display: block;
    margin-top: 14px;
    color: var(--nw-offwhite);
    font-size: 16px;
}

.v3_ops_plan_grid span {
    display: block;
    margin-top: 8px;
    color: #aaa59b;
    font-size: 14px;
    line-height: 1.5;
}

.v3_ops_production_map {
    display: grid;
    grid-template-columns: minmax(210px, .9fr) minmax(0, 1.65fr);
    gap: 12px;
}

.v3_ops_master_material {
    min-height: 194px;
    padding: 24px;
    border: 1px solid var(--nw-orange);
    background: linear-gradient(145deg, rgba(255, 90, 31, .12), rgba(255, 90, 31, .02));
}

.v3_ops_master_material strong,
.v3_ops_master_material span {
    display: block;
}

.v3_ops_master_material strong {
    margin-top: 28px;
    color: var(--nw-offwhite);
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.v3_ops_master_material span {
    margin-top: 12px;
    color: #b7b2a8;
    font-size: 14px;
    line-height: 1.55;
}

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

.v3_ops_output_grid span {
    display: grid;
    place-items: center start;
    min-height: 58px;
    padding: 15px 17px;
    border: 1px solid rgba(243, 240, 232, .18);
    background: rgba(243, 240, 232, .035);
    color: var(--nw-offwhite);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .075em;
}

.v3_ops_output_grid span:first-child {
    grid-column: span 2;
    border-color: rgba(255, 90, 31, .65);
    color: var(--nw-orange);
}

.v3_ops_production_thinking {
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(243, 240, 232, .15);
}

.v3_ops_production_thinking > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}

.v3_ops_production_thinking > div span {
    padding: 8px 10px;
    border: 1px solid rgba(243, 240, 232, .16);
    color: #d0cbc1;
    font-size: 12px;
    line-height: 1;
}

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

.v3_ops_publish_grid article {
    min-height: 170px;
    padding: 20px;
    border: 1px solid rgba(243, 240, 232, .16);
    background: rgba(243, 240, 232, .025);
}

.v3_ops_publish_grid strong {
    display: block;
    margin: 18px 0 12px;
    color: var(--nw-offwhite);
    font-size: 20px;
    line-height: 1.05;
}

.v3_ops_publish_grid article > span {
    display: block;
    position: relative;
    padding-left: 14px;
    color: #aaa59b;
    font-size: 13px;
    line-height: 1.55;
}

.v3_ops_publish_grid article > span::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 5px;
    height: 1px;
    background: var(--nw-orange);
}

.v3_ops_signal_grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid rgba(243, 240, 232, .16);
}

.v3_ops_signal_grid > div {
    position: relative;
    min-height: 148px;
    padding: 18px 16px;
    border-right: 1px solid rgba(243, 240, 232, .13);
}

.v3_ops_signal_grid > div:last-child {
    border-right: 0;
    background: rgba(255, 90, 31, .08);
}

.v3_ops_signal_grid > div:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 18px;
    right: -10px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    background: #111315;
    color: var(--nw-orange);
    font-size: 14px;
}

.v3_ops_signal_grid strong {
    display: block;
    margin-top: 22px;
    color: var(--nw-offwhite);
    font-size: 14px;
    line-height: 1.15;
}

.v3_ops_signal_grid span {
    display: block;
    margin-top: 10px;
    color: #aaa59b;
    font-size: 13px;
    line-height: 1.5;
}

.v3_ops_takeaway {
    display: grid;
    grid-template-columns: minmax(155px, .48fr) minmax(0, 1.52fr);
    gap: 20px;
    align-items: start;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(243, 240, 232, .15);
}

.v3_ops_takeaway strong {
    color: var(--nw-offwhite);
    font-size: 16px;
    line-height: 1.45;
}

.v3_ops_console .v3_operation_flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.v3_operation_flow > button {
    min-width: 0;
    min-height: 112px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(11, 13, 15, .2);
    background: transparent;
    color: var(--nw-graphit);
    text-align: left;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.v3_operation_flow > button span {
    display: block;
    color: var(--nw-orange);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 12px;
    font-weight: 750;
}

.v3_operation_flow > button strong {
    display: block;
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.12;
}

.v3_operation_flow > button em {
    display: block;
    margin-top: 8px;
    color: #6f6b64;
    font-size: 13px;
    font-style: normal;
    line-height: 1.35;
}

.v3_operation_flow > button.is_active,
.v3_operation_flow > button[aria-selected="true"] {
    border-color: var(--nw-orange);
    background: var(--nw-orange);
    color: var(--nw-graphit);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 90, 31, .12);
}

.v3_operation_flow > button.is_active span,
.v3_operation_flow > button[aria-selected="true"] span,
.v3_operation_flow > button.is_active em,
.v3_operation_flow > button[aria-selected="true"] em {
    color: var(--nw-graphit);
}

@media (hover: hover) and (pointer: fine) {
    .v3_operation_flow > button:hover:not([aria-selected="true"]) {
        border-color: rgba(255, 90, 31, .78);
        box-shadow: inset 0 3px 0 var(--nw-orange);
        transform: translateY(-2px);
    }
}

.v3_ops_select_button {
    margin-top: 28px;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.v3_ops_select_button.is_applied {
    background: var(--nw-orange);
    color: var(--nw-graphit);
    border-color: var(--nw-orange);
}

.v3_ops_select_note {
    max-width: 520px;
    margin: 10px 0 0;
    color: #77746d;
    font-size: 13px;
    line-height: 1.55;
}

.v3_ops_console.is_switching .v3_ops_stage_grid {
    animation: nwOpsGridShift 360ms ease 1;
}

@keyframes nwOpsGridShift {
    0% { background-position: 0 0, 0 0; opacity: .08; }
    100% { background-position: 48px 0, 48px 0; opacity: .2; }
}

@media (max-width: 1180px) {
    .v3_ops_stage {
        min-height: 620px;
        padding: 32px 28px 28px;
    }

    .v3_ops_stage_copy h3 {
        font-size: clamp(32px, 4vw, 46px);
    }

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

    .v3_ops_signal_grid > div {
        border-bottom: 1px solid rgba(243, 240, 232, .13);
    }

    .v3_ops_signal_grid > div:nth-child(even) {
        border-right: 0;
    }

    .v3_ops_signal_grid > div:last-child {
        grid-column: span 2;
        border-bottom: 0;
    }

    .v3_ops_signal_grid > div::after {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .project_builder_offers [data_offer_featured]:hover,
    .project_builder_offers [data_offer_featured].is_selected {
        transform: translateY(-4px) scale(1.006);
    }

    .v3_ops_stage {
        min-height: auto;
        padding: 30px 24px 26px;
    }

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

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

    .v3_ops_master_material {
        min-height: 150px;
    }
}

@media (max-width: 640px) {
    .offer_featured_hint,
    .offer_selection_trigger {
        top: 14px;
        max-width: calc(100% - 110px);
    }

    .v3_ops_head {
        padding: 16px 18px;
    }

    .v3_ops_head span {
        font-size: 10px;
    }

    .v3_ops_stage {
        padding: 24px 18px 20px;
    }

    .v3_ops_stage_copy h3 {
        font-size: clamp(30px, 10vw, 40px);
    }

    .v3_ops_stage_copy p {
        font-size: 15px;
    }

    .v3_ops_plan_grid,
    .v3_ops_publish_grid,
    .v3_ops_output_grid,
    .v3_ops_signal_grid {
        grid-template-columns: 1fr;
    }

    .v3_ops_output_grid span:first-child,
    .v3_ops_signal_grid > div:last-child {
        grid-column: auto;
    }

    .v3_ops_signal_grid > div,
    .v3_ops_signal_grid > div:nth-child(even) {
        border-right: 0;
        border-bottom: 1px solid rgba(243, 240, 232, .13);
    }

    .v3_ops_signal_grid > div:last-child {
        border-bottom: 0;
    }

    .v3_ops_takeaway {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .v3_ops_console .v3_operation_flow {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .v3_operation_flow > button {
        min-height: 96px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project_builder_offers [data_offer_featured],
    .project_builder_offers [data_offer_featured]::after,
    .offer_featured_hint,
    .offer_selection_trigger,
    .v3_ops_panel,
    .v3_operation_flow > button,
    .v3_ops_select_button {
        transition: none !important;
        animation: none !important;
    }
}

.project_builder_offers [data_offer_featured]::after {
    z-index: 0;
}

.project_builder_offers [data_offer_featured] > * {
    position: relative;
    z-index: 1;
}

.project_builder_offers [data_offer_featured].is_recommended .offer_featured_hint,
.project_builder_offers [data_offer_featured].is_recommended .offer_selection_trigger:not(:only-child) {
    top: 54px;
}

@media (hover: hover) and (pointer: fine) {
    .project_builder_offers .offer_card:not([data_offer_featured]):hover {
        z-index: 3;
        transform: translateY(-5px);
        border-color: rgba(255, 90, 31, .72);
        box-shadow: 0 22px 64px rgba(0, 0, 0, .18);
    }

    .project_builder_offers .offer_card:hover .offer_select_button {
        border-color: var(--nw-orange);
    }
}

/* =========================================================
   V5.12 COPY, READABILITY AND INTERACTION PASS
   Problem led proof, tighter project worlds, capture system,
   refined capability lab and scroll driven career story
   ========================================================= */

/* Capture flash and REC system */
.nw_capture_flash,
.nw_capture_rec {
    pointer-events: none;
}

.nw_capture_flash {
    position: absolute;
    inset: 0;
    z-index: 24;
    opacity: 0;
    background: rgba(255, 251, 235, .94);
    mix-blend-mode: screen;
}

.nw_capture_flash.is_firing {
    animation: nwCaptureFlash 420ms cubic-bezier(.18, .72, .28, 1) both;
}

@keyframes nwCaptureFlash {
    0% { opacity: 0; }
    12% { opacity: .96; }
    34% { opacity: .42; }
    100% { opacity: 0; }
}

.nw_capture_rec {
    position: absolute;
    z-index: 25;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-6px);
    color: var(--nw-offwhite);
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    transition: opacity 180ms ease, transform 180ms ease;
}

.nw_capture_rec.is_visible {
    opacity: 1;
    transform: translateY(0);
}

.nw_capture_rec > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nw_capture_rec > span i {
    width: 9px;
    height: 9px;
    background: var(--nw-orange);
    box-shadow: 0 0 0 5px rgba(255, 90, 31, .12);
}

.nw_capture_rec time {
    color: #c8c4bb;
    font: inherit;
}

.nw_capture_rec_hero {
    top: 112px;
    right: max(24px, calc((100vw - 1440px) / 2 + 24px));
}

.production_viewfinder {
    cursor: crosshair;
}

.nw_capture_flash_production {
    z-index: 20;
}

.nw_capture_rec_production {
    top: 18px;
    right: 18px;
    z-index: 21;
    padding: 7px 8px;
    background: rgba(11, 13, 15, .54);
    backdrop-filter: blur(6px);
    font-size: 9px;
}

.nw_capture_rec_production > span i {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(255, 90, 31, .1);
}

/* Problem led proof section */
.v3_proof_section {
    padding-top: 112px;
    padding-bottom: 112px;
}

.v3_proof_copy .work_meta {
    font-size: 11px;
    line-height: 1.4;
}

.v3_proof_copy h3 {
    font-size: clamp(30px, 2.35vw, 42px);
    line-height: 1.01;
}

.v3_proof_copy > p:not(.work_meta) {
    font-size: 16px;
    line-height: 1.6;
}

.v3_proof_client,
.v3_proof_open {
    font-size: 10px;
}

/* Project worlds tighter to journal */
.v3_project_worlds {
    padding-top: 112px;
    padding-bottom: 44px;
}

.v3_world_body {
    padding: 24px 24px 26px;
}

.v3_world_body h3 {
    margin-top: 44px;
    font-size: clamp(30px, 2.7vw, 44px);
}

.v3_world_body p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.58;
}

.v3_world_body > span,
.v3_world_body small,
.v3_world_media_code,
.v3_world_media_hint {
    font-size: 10px;
}

.section_journal {
    padding-top: 56px;
}

/* Capability lab visual tightening and readability */
.creative_system {
    padding-top: 116px;
    padding-bottom: 84px;
}

.creative_system_header {
    margin-bottom: 46px;
}

.creative_system_grid {
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1.7fr);
    gap: 18px;
}

.creative_profile_visual {
    min-height: 700px;
}

.creative_lab_head {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .78fr);
    padding: 18px 20px;
}

.creative_lab_head > div {
    font-size: 11px;
}

.creative_lab_head > div small {
    font-size: 10px;
}

.creative_lab_head > p {
    font-size: 14px;
    line-height: 1.55;
}

.creative_module_tab {
    min-height: 108px;
    padding: 16px;
}

.creative_module_tab > span,
.creative_module_tab > small {
    font-size: 10px;
}

.creative_module_tab > span {
    margin-bottom: 16px;
}

.creative_module_tab > strong {
    min-height: 2em;
    font-size: clamp(18px, 1.38vw, 24px);
    line-height: 1.02;
}

.creative_module_tab > small {
    margin-top: 10px;
    line-height: 1.4;
}

.creative_demo_console {
    grid-template-columns: minmax(0, 1.52fr) minmax(340px, .72fr);
    min-height: 472px;
}

.creative_demo {
    gap: 18px;
    padding: 22px;
}

.creative_module_detail {
    padding: 24px;
}

.creative_detail_top {
    font-size: 10px;
}

.creative_detail_index {
    margin-top: 42px;
}

.creative_detail_index span {
    font-size: 44px;
}

.creative_detail_index small {
    font-size: 10px;
}

.creative_module_detail h3 {
    margin-top: 12px;
    max-width: 100%;
    font-size: clamp(27px, 2vw, 34px);
    font-weight: 680;
    line-height: 1;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.creative_module_detail > p {
    margin-top: 16px;
    color: #aaa79f;
    font-size: 15px;
    line-height: 1.58;
}

.creative_detail_tags {
    margin-top: 18px;
}

.creative_detail_tags span {
    padding: 7px 9px;
    font-size: 9px;
}

.creative_next_module {
    margin-top: auto;
    font-size: 10px;
}

.demo_caption {
    grid-template-columns: minmax(120px, .4fr) minmax(0, 1fr);
    gap: 16px;
}

.demo_caption span {
    font-size: 10px;
}

.demo_caption strong {
    font-size: 13px;
    line-height: 1.5;
}

.production_exposure,
.production_readout,
.post_preview > span,
.post_preview_frame strong,
.motion_value,
.data_learning_loop {
    font-size: 10px;
}

/* Post production as a recognisable NLE workflow */
.post_workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, .65fr);
    gap: 12px;
    min-height: 172px;
}

.post_preview {
    min-height: 172px;
}

.post_inspector {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(243, 240, 232, .12);
    background: rgba(255, 255, 255, .018);
}

.post_inspector span,
.post_inspector small,
.timeline_timecode,
.timeline_row > b {
    font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    letter-spacing: .09em;
}

.post_inspector span {
    color: var(--nw-orange);
    font-size: 10px;
}

.post_inspector strong {
    color: var(--nw-offwhite);
    font-size: 13px;
    line-height: 1.45;
}

.post_inspector small {
    color: #8f8c85;
    font-size: 10px;
    line-height: 1.5;
}

.post_timeline {
    gap: 6px;
    padding-top: 6px;
    overflow: hidden;
}

.timeline_timecode {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 24px;
    color: #78756f;
    font-size: 10px;
}

.timeline_timecode strong {
    color: var(--nw-orange);
    font-size: 11px;
}

.timeline_row {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 6px;
    align-items: stretch;
}

.timeline_row > b {
    display: grid;
    place-items: center;
    border: 1px solid rgba(243, 240, 232, .1);
    color: #77746d;
    font-size: 9px;
    font-weight: 700;
}

.timeline_track {
    min-height: 31px;
}

.text_track span {
    font-size: 9px;
}

.timeline_playhead {
    top: 34px;
    animation-duration: 7.8s !important;
}

.demo_post.is_active .post_preview_frame i {
    animation: nwPostMonitorShift 7.8s ease-in-out infinite;
}

@keyframes nwPostMonitorShift {
    0%, 100% { transform: rotate(-4deg) scale(1); }
    45% { transform: rotate(2deg) scale(1.08); }
    70% { transform: rotate(-1deg) scale(.96); }
}

/* Motion system with dedicated slow detail curve */
.motion_demo_toolbar {
    flex-wrap: wrap;
}

.motion_demo_toolbar button {
    font-size: 10px;
}

.motion_path_slow {
    opacity: 0;
}

.demo_motion.is_slow .motion_path_slow {
    opacity: 1;
}

.demo_motion.is_slow .motion_object {
    animation-duration: 4.8s;
    animation-timing-function: cubic-bezier(.08, .72, .18, 1);
}

.demo_motion.is_slow .motion_keyframe_a,
.demo_motion.is_slow .motion_keyframe_b {
    stroke-width: 2;
}

/* Career story as a scroll driven sequence */
.career_story {
    position: relative;
    min-height: 230vh;
    margin-top: 26px;
    border: 0;
    background: transparent;
}

.career_story_sticky {
    position: sticky;
    top: 74px;
    overflow: hidden;
    border: 1px solid rgba(243, 240, 232, .18);
    background: rgba(16, 19, 21, .94);
}

.career_story_header {
    gap: 42px;
    padding: 30px 32px;
}

.career_story_header .eyebrow {
    font-size: 11px;
}

.career_story_header h3 {
    font-size: clamp(42px, 4.4vw, 72px);
}

.career_story_header > p {
    font-size: 16px;
    line-height: 1.58;
}

.career_timeline_rail {
    padding: 30px 30px 26px;
}

.career_timeline_rail::before,
.career_timeline_progress {
    left: calc(12.5% + 30px);
    right: calc(12.5% + 30px);
    top: 45px;
}

.career_timeline_node {
    gap: 10px;
}

.career_timeline_node > span {
    font-size: 10px;
}

.career_timeline_node > strong {
    font-size: 11px;
}

.career_timeline_node > small {
    max-width: 210px;
    font-size: 13px;
    line-height: 1.4;
}

.career_story_detail {
    min-height: 300px;
}

.career_story_main,
.career_story_fact {
    padding: 32px;
}

.career_story_main > p:first-child,
.career_story_fact span {
    font-size: 10px;
}

.career_story_main h3 {
    font-size: clamp(36px, 3.6vw, 60px);
}

.career_story_main > strong {
    font-size: 15px;
}

.career_story_main > p:last-child,
.career_story_fact > p {
    font-size: 16px;
    line-height: 1.62;
}

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

    .creative_demo_console {
        grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    }

    .creative_module_detail h3 {
        font-size: 30px;
    }
}

@media (max-width: 980px) {
    .nw_capture_rec_hero {
        top: 100px;
        right: 24px;
    }

    .v3_project_worlds {
        padding-bottom: 34px;
    }

    .section_journal {
        padding-top: 48px;
    }

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

    .creative_module_detail h3 {
        white-space: normal;
    }

    .career_story {
        min-height: auto;
    }

    .career_story_sticky {
        position: relative;
        top: auto;
    }
}

@media (max-width: 680px) {
    .nw_capture_rec_hero {
        top: 92px;
        right: 18px;
        font-size: 10px;
    }

    .v3_proof_section {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .v3_proof_copy h3 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .v3_project_worlds {
        padding-top: 88px;
        padding-bottom: 28px;
    }

    .section_journal {
        padding-top: 42px;
    }

    .creative_system {
        padding-top: 92px;
        padding-bottom: 70px;
    }

    .creative_lab_head > p {
        font-size: 14px;
    }

    .creative_module_tab > span,
    .creative_module_tab > small,
    .creative_detail_top,
    .creative_next_module,
    .production_exposure,
    .production_readout,
    .post_preview > span,
    .post_preview_frame strong,
    .motion_value,
    .data_learning_loop {
        font-size: 10px;
    }

    .creative_module_tab > strong {
        font-size: 21px;
    }

    .creative_module_detail > p {
        font-size: 15px;
    }

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

    .post_inspector {
        min-height: 118px;
    }

    .motion_demo_toolbar button {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
    }

    .career_story_header,
    .career_story_main,
    .career_story_fact {
        padding: 24px;
    }

    .career_timeline_node > small {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nw_capture_flash.is_firing {
        animation: nwCaptureFlashReduced 180ms ease both;
    }

    @keyframes nwCaptureFlashReduced {
        0% { opacity: 0; }
        40% { opacity: .28; }
        100% { opacity: 0; }
    }
}

/* V5.12 final readability floor for the revised sections */
.v3_proof_code,
.v3_proof_copy .work_meta,
.v3_proof_client,
.v3_proof_open {
    font-size: 12px;
}

.v3_world_body > span,
.v3_world_body small,
.v3_world_media_code,
.v3_world_media_hint {
    font-size: 12px;
}

.creative_detail_top,
.creative_detail_index small,
.creative_detail_tags span,
.creative_next_module {
    font-size: 11px;
}

.creative_module_detail > p {
    font-size: 16px;
}

.career_story_header .eyebrow,
.career_timeline_node > span,
.career_timeline_node > strong,
.career_story_main > p:first-child,
.career_story_fact span {
    font-size: 12px;
}

@media (max-width: 680px) {
    .v3_proof_code,
    .v3_proof_copy .work_meta,
    .v3_proof_client,
    .v3_proof_open,
    .v3_world_body > span,
    .v3_world_body small,
    .v3_world_media_code,
    .v3_world_media_hint,
    .career_story_header .eyebrow,
    .career_timeline_node > span,
    .career_timeline_node > strong,
    .career_story_main > p:first-child,
    .career_story_fact span {
        font-size: 12px;
    }
}

/* Final capability lab label tuning */
.creative_module_tab > span,
.creative_module_tab > small {
    font-size: 11px;
}

.creative_detail_top,
.creative_detail_index small,
.creative_next_module {
    font-size: 12px;
}


/* =========================================================
   V5.13 INTERACTION AND CAREER FLOW FIX
   Portrait capture, reliable scroll milestones, direct contact handoff
   ========================================================= */

/* The portrait itself is now a capture surface, matching the hero interaction. */
.creative_portrait_frame {
    cursor: crosshair;
    isolation: isolate;
}

.nw_capture_flash_portrait {
    z-index: 18;
}

.nw_capture_rec_portrait {
    top: 16px;
    right: 16px;
    z-index: 19;
    padding: 7px 8px;
    background: rgba(11, 13, 15, .58);
    backdrop-filter: blur(6px);
    font-size: 10px;
}

.nw_capture_rec_portrait > span i {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(255, 90, 31, .1);
}

/* Sticky must remain active inside the Creative System section. */
.creative_system {
    overflow: clip;
    padding-bottom: 0;
}

.career_story {
    min-height: 190vh;
    margin-bottom: 0;
}

.career_story_sticky {
    will-change: transform;
}

/* Clear visual handoff: the orange contact section begins immediately after the scroll story. */
.contact_section {
    position: relative;
    z-index: 3;
    margin-top: 0;
}

@media (max-width: 980px) {
    .creative_system {
        overflow: hidden;
        padding-bottom: 70px;
    }

    .career_story {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .nw_capture_rec_portrait {
        top: 12px;
        right: 12px;
        font-size: 9px;
    }
}


/* =========================================================
   V5.14 FINAL STABILITY AND READABILITY PASS
   Stable Content Operations, scroll driven data chart,
   reliable portrait capture and compact career handoff
   ========================================================= */

/* Content Operations keeps one fixed geometry across all four states. */
.v3_ops_stage {
    height: var(--ops-stage-lock, auto);
    min-height: var(--ops-stage-lock, 590px);
}

.v3_ops_stage_copy {
    height: var(--ops-copy-lock, auto);
    min-height: var(--ops-copy-lock, 0px);
}

.v3_ops_stage_visual {
    position: relative;
    height: var(--ops-visual-lock, auto);
    min-height: var(--ops-visual-lock, 300px);
}

.v3_ops_panel,
.v3_ops_panel.is_active {
    position: absolute;
    inset: 0;
    width: 100%;
}

.v3_operation_flow > button,
.v3_operation_flow > button.is_active,
.v3_operation_flow > button[aria-selected="true"],
.v3_operation_flow > button:hover {
    transform: none;
}

/* Data section: only the previously undersized information is enlarged. */
.v3_chapter_data .v3_chapter_index,
.v3_chapter_data .eyebrow,
.v3_chapter_data .v3_value_statement span,
.v3_data_dashboard .v3_visual_head,
.v3_data_dashboard .v3_signal_cards small,
.v3_chapter_data .v3_data_loop span {
    font-size: 12px;
}

.v3_data_dashboard .v3_signal_cards p {
    font-size: 15px;
    line-height: 1.58;
}

/* The chart is driven by scroll progress, not a short entrance animation. */
.v3_chart_line,
.v3_chart_line_secondary,
.v3_data_dashboard.is_chart_active .v3_chart_line,
.v3_data_dashboard.is_chart_active .v3_chart_line_secondary {
    animation: none;
    transition: none;
}

.v3_chart_marker {
    display: none !important;
}

.v3_chart_endmark {
    position: absolute;
    left: 94%;
    top: 24%;
    z-index: 4;
    width: 14px;
    height: 10px;
    opacity: 0;
    background: var(--nw-orange);
    transform: translate(-50%, -50%) scale(.72);
    box-shadow: 0 0 0 6px rgba(255, 90, 31, .08);
    transition: opacity 180ms ease, transform 220ms cubic-bezier(.2,.8,.2,1);
}

.v3_chart_endmark.is_visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Portrait capture: the whole image surface receives the interaction reliably. */
.creative_portrait_frame {
    cursor: crosshair;
    touch-action: pan-y;
}

.creative_portrait {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.profile_visual_readout,
.profile_visual_readout_side strong,
.creative_profile_caption > div span {
    font-size: 12px;
}

.creative_profile_caption > div strong {
    font-size: 14px;
}

.creative_profile_caption > p:last-child {
    font-size: 15px;
    line-height: 1.6;
}

/* Sticky Werdegang must not be blocked by an overflow ancestor. */
.creative_system {
    overflow: visible;
    padding-bottom: 0;
}

.career_story {
    min-height: calc(100svh + var(--career-scroll-distance, 690px));
    margin-bottom: 0;
}

.career_story_sticky {
    position: sticky;
    top: 74px;
}

.contact_section {
    margin-top: 0;
}

@media (max-width: 1180px) {
    .v3_ops_stage {
        min-height: var(--ops-stage-lock, 620px);
    }
}

@media (max-width: 980px) {
    .creative_system {
        overflow: hidden;
        padding-bottom: 44px;
    }

    .career_story {
        min-height: auto;
    }

    .career_story_sticky {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .v3_ops_stage {
        height: auto;
        min-height: auto;
    }

    .v3_ops_stage_copy,
    .v3_ops_stage_visual {
        height: auto;
        min-height: auto;
    }

    .v3_ops_panel,
    .v3_ops_panel.is_active {
        position: relative;
        inset: auto;
    }

    .v3_ops_panel:not(.is_active) {
        display: none;
    }

    .v3_chapter_data .v3_chapter_index,
    .v3_chapter_data .eyebrow,
    .v3_chapter_data .v3_value_statement span,
    .v3_data_dashboard .v3_visual_head,
    .v3_data_dashboard .v3_signal_cards small,
    .v3_chapter_data .v3_data_loop span,
    .profile_visual_readout,
    .profile_visual_readout_side strong,
    .creative_profile_caption > div span {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .v3_chart_endmark {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        transition: none;
    }
}

/* =========================================================
   V5.15 FINAL HOMEPAGE MICRO FIX
   Keep the long phase 03 label inside its navigation tile.
   No other geometry or typography is changed.
   ========================================================= */
.v3_operation_flow > button[data_ops_stage="2"] strong {
    max-width: 100%;
    font-size: 14px;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

@media (max-width:760px){.first_project_benefit{grid-template-columns:1fr;gap:10px;margin-top:0;padding:20px 0}.first_project_benefit p{max-width:540px}}
.footer_cookie_button{appearance:none;border:0;background:transparent;color:inherit;font:inherit;padding:0;cursor:pointer;text-decoration:underline;text-underline-offset:3px}.footer_cookie_button_standalone{margin-left:auto}.nw_consent_backdrop{position:fixed;inset:0;z-index:99998;background:rgba(5,6,7,.64);backdrop-filter:blur(8px)}.nw_consent{position:fixed;z-index:99999;left:50%;bottom:22px;width:min(920px,calc(100% - 32px));transform:translateX(-50%);background:#0b0d0f;color:#f3f0e8;border:1px solid rgba(243,240,232,.16);box-shadow:0 24px 80px rgba(0,0,0,.38)}.nw_consent_inner{padding:26px}.nw_consent_label{margin:0 0 10px;color:var(--nw-orange);font-family:"IBM Plex Mono",monospace;font-size:10px;font-weight:800;letter-spacing:.12em}.nw_consent h2{margin:0;font-size:clamp(28px,4vw,46px);line-height:1;letter-spacing:-.04em}.nw_consent_intro{max-width:740px;margin:14px 0 0;color:#b6b2aa;line-height:1.55}.nw_consent_links{display:flex;gap:16px;flex-wrap:wrap;margin-top:12px}.nw_consent_links a{color:#f3f0e8;font-size:13px}.nw_consent_actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}.nw_consent_button{min-height:44px;border:1px solid rgba(243,240,232,.28);background:transparent;color:#f3f0e8;padding:11px 16px;font:inherit;font-weight:750;cursor:pointer}.nw_consent_button_primary{border-color:var(--nw-orange);background:var(--nw-orange);color:#0b0d0f}.nw_consent_settings{display:none;padding-top:22px}.nw_consent.is_settings .nw_consent_settings{display:grid;gap:10px}.nw_consent_option{display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center;padding:16px 0;border-top:1px solid rgba(243,240,232,.13)}.nw_consent_option strong{display:block}.nw_consent_option span{display:block;margin-top:5px;color:#aaa7a0;font-size:13px;line-height:1.45}.nw_consent_option input{width:22px;height:22px;accent-color:var(--nw-orange)}.nw_consent_settings_actions{display:flex;justify-content:flex-end;gap:10px;flex-wrap:wrap;padding-top:8px}@media(max-width:680px){.nw_consent{bottom:10px;width:calc(100% - 20px);max-height:calc(100vh - 20px);overflow:auto}.nw_consent_inner{padding:20px}.nw_consent_actions,.nw_consent_settings_actions{display:grid;grid-template-columns:1fr}.nw_consent_button{width:100%}}