:root {
    --ink: #0a0a0a;
    --ink-soft: #171717;
    --paper: #ffffff;
    --paper-soft: #f3f3f1;
    --line: #d8d8d4;
    --muted: #656565;
    --quiet: #9a9a96;
    --container: 1240px;
    --header-height: 76px;
    --radius: 6px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button {
    color: inherit;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(42px, 6vw, 88px);
    font-weight: 650;
}

h2 {
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 620;
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--paper);
    background: var(--ink);
    transform: translateY(-140%);
}

.skip-link:focus {
    transform: none;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--paper);
    background: rgba(10, 10, 10, 0.86);
    backdrop-filter: blur(18px);
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-light,
.site-header.is-scrolled {
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.94);
}

.header-inner {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    height: 100%;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 182px;
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.brand-logo--white {
    display: block;
}

.brand-logo--color {
    display: none;
}

.site-header.is-light .brand-logo--white,
.site-header.is-scrolled .brand-logo--white {
    display: none;
}

.site-header.is-light .brand-logo--color,
.site-header.is-scrolled .brand-logo--color {
    display: block;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    padding-block: 8px;
    color: currentColor;
    font-size: 14px;
    font-weight: 500;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button.light {
    color: var(--ink);
    background: var(--paper);
}

.button.dark {
    color: var(--paper);
    background: var(--ink);
}

.button.outline-light {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
}

.button.outline-dark {
    color: var(--ink);
    border-color: var(--line);
    background: transparent;
}

.site-header.is-light .header-cta,
.site-header.is-scrolled .header-cta {
    color: var(--paper);
    background: var(--ink);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
}

.menu-toggle:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.menu-toggle svg {
    width: 20px;
    height: 20px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 95;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.54);
    cursor: pointer;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(86vw, 390px);
    align-content: start;
    padding: calc(var(--header-height) + 34px) 26px 34px;
    overflow-y: auto;
    color: var(--paper);
    background: var(--ink);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.34);
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-nav {
    display: grid;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    border-bottom: 1px solid #303030;
    font-size: 23px;
    font-weight: 500;
}

.mobile-nav a svg {
    width: 20px;
}

.mobile-menu-footer {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.mobile-menu-footer .button {
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.hero {
    position: relative;
    height: calc(100svh - 42px);
    min-height: 680px;
    max-height: 840px;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    padding-top: var(--header-height);
    opacity: 0;
    pointer-events: none;
    transition: opacity 520ms ease;
}

.hero-slide.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}

.hero-slide::before {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    content: "";
}

.hero-slide-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    align-items: center;
    gap: 34px;
    padding-block: 54px 86px;
}

.hero-copy {
    max-width: 680px;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(44px, 4.6vw, 66px);
}

.hero-copy p {
    max-width: 620px;
    margin-bottom: 26px;
    color: #d2d2d2;
    font-size: 17px;
}

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

.hero-scene {
    position: relative;
    min-height: 560px;
}

.hero-digital-art {
    position: relative;
    display: flex;
    min-height: 560px;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
}

.hero-spin-shell {
    position: relative;
    display: flex;
    width: min(100%, 560px);
    height: 590px;
    align-items: center;
    justify-content: center;
}

.hero-spin-ring {
    position: absolute;
    z-index: 1;
    inset: 13% 0 11%;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-left-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.hero-spin-label {
    position: absolute;
    top: 5%;
    right: 8%;
    padding: 2px 10px;
    background: var(--ink);
    color: #b9f3ff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    transform: rotate(10deg);
}

.hero-spin-label-rfr {
    top: auto;
    right: auto;
    bottom: 5%;
    left: 8%;
    color: var(--paper);
}

.hero-spin-window {
    position: relative;
    z-index: 2;
    width: min(76%, 405px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.34));
}

.hero-spin-strip {
    display: block;
    width: 900%;
    height: 100%;
    max-width: none;
    object-fit: fill;
    transform: translate3d(var(--head-offset, 0%), 0, 0);
}

.hero-dots {
    position: absolute;
    z-index: 5;
    right: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 24px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 44px;
    height: 4px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    transition: background 160ms ease;
}

.hero-dot.is-active {
    background: var(--paper);
}

.hero-counter {
    position: absolute;
    z-index: 5;
    right: max(238px, calc((100vw - var(--container)) / 2 + 238px));
    bottom: 17px;
    color: #b8b8b8;
    font-size: 13px;
}

.hero-counter strong {
    color: var(--paper);
    font-size: 22px;
    font-weight: 500;
}

.device {
    position: absolute;
    overflow: hidden;
    color: var(--ink);
    background: #f7f7f5;
    box-shadow: var(--shadow);
}

.device.desktop {
    top: 44px;
    right: -88px;
    width: 700px;
    aspect-ratio: 16 / 10;
    border: 8px solid #1b1b1b;
    border-radius: 7px;
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
}

.device.tablet {
    right: 380px;
    bottom: 18px;
    width: 270px;
    aspect-ratio: 4 / 5;
    border: 7px solid #141414;
    border-radius: 14px;
    transform: rotate(-4deg);
}

.device.phone {
    right: 80px;
    bottom: -12px;
    width: 175px;
    aspect-ratio: 9 / 18;
    border: 7px solid #111;
    border-radius: 22px;
    transform: rotate(4deg);
}

.screen {
    height: 100%;
    overflow: hidden;
    background: #f1f1ef;
}

.desktop-screen {
    display: grid;
    grid-template-columns: 126px 1fr;
}

.mock-sidebar {
    padding: 16px 12px;
    color: #d7d7d7;
    background: #111;
}

.mock-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 24px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.mock-brand-mark {
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
}

.mock-menu-item {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    padding: 8px;
    border-radius: 4px;
    color: #aaa;
    font-size: 7px;
}

.mock-menu-item::before {
    width: 7px;
    height: 7px;
    border: 1px solid currentColor;
    content: "";
}

.mock-menu-item.active {
    color: #111;
    background: #fff;
}

.mock-main {
    min-width: 0;
}

.mock-topbar {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid #d8d8d8;
    background: #fff;
    font-size: 9px;
    font-weight: 700;
}

.mock-avatar {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #737373;
    font-size: 7px;
}

.mock-avatar::before {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #111;
    content: "";
}

.mock-content {
    padding: 18px;
}

.mock-heading {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.mock-stat {
    min-height: 58px;
    padding: 10px;
    border: 1px solid #d4d4d1;
    background: #fff;
}

.mock-stat span {
    display: block;
    margin-bottom: 8px;
    color: #777;
    font-size: 6px;
}

.mock-stat strong {
    font-size: 15px;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 10px;
}

.mock-panel {
    min-height: 160px;
    padding: 12px;
    border: 1px solid #d4d4d1;
    background: #fff;
}

.mock-panel-title {
    margin-bottom: 15px;
    font-size: 8px;
    font-weight: 700;
}

.mock-chart {
    display: flex;
    height: 78px;
    align-items: end;
    gap: 7px;
    padding: 7px 5px 0;
    border-bottom: 1px solid #ddd;
}

.mock-chart span {
    width: 14%;
    min-height: 12px;
    background: #171717;
}

.mock-chart span:nth-child(2) {
    height: 58%;
}

.mock-chart span:nth-child(3) {
    height: 42%;
}

.mock-chart span:nth-child(4) {
    height: 82%;
}

.mock-chart span:nth-child(5) {
    height: 66%;
}

.mock-chart span:nth-child(6) {
    height: 94%;
}

.mock-list {
    display: grid;
    gap: 7px;
}

.mock-list span {
    display: block;
    height: 8px;
    background: #e1e1df;
}

.mock-list span:nth-child(2) {
    width: 76%;
}

.mock-list span:nth-child(3) {
    width: 88%;
}

.tablet-screen {
    padding: 18px 14px;
}

.tablet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 9px;
    font-weight: 700;
}

.tablet-greeting {
    margin-bottom: 14px;
}

.tablet-greeting strong,
.phone-greeting strong {
    display: block;
    font-size: 15px;
}

.tablet-greeting span,
.phone-greeting span {
    color: #777;
    font-size: 8px;
}

.course-tile {
    margin-bottom: 9px;
    padding: 12px;
    border: 1px solid #d4d4d1;
    background: #fff;
}

.course-tile b {
    display: block;
    margin-bottom: 7px;
    font-size: 9px;
}

.course-tile small {
    color: #747474;
    font-size: 7px;
}

.progress {
    height: 4px;
    margin-top: 9px;
    background: #dededb;
}

.progress i {
    display: block;
    height: 100%;
    background: #111;
}

.phone-screen {
    padding: 18px 12px 12px;
}

.phone-notch {
    width: 48px;
    height: 4px;
    margin: -10px auto 18px;
    border-radius: 2px;
    background: #111;
}

.phone-greeting {
    margin-bottom: 15px;
}

.phone-card {
    margin-bottom: 9px;
    padding: 10px;
    border: 1px solid #d4d4d1;
    background: #fff;
}

.phone-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 8px;
}

.phone-card span {
    color: #777;
    font-size: 6px;
}

.phone-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 38px;
    border-top: 1px solid #ddd;
    background: #fff;
}

.phone-nav i {
    position: relative;
}

.phone-nav i::after {
    position: absolute;
    top: 11px;
    left: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid #777;
    content: "";
    transform: translateX(-50%);
}

.agency-board {
    position: absolute;
    inset: 34px -70px 24px 30px;
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 12px;
    padding: 18px;
    color: var(--ink);
    background: #f5f5f3;
    box-shadow: var(--shadow);
    transform: perspective(1200px) rotateY(-7deg);
}

.agency-column {
    display: grid;
    gap: 12px;
}

.agency-panel {
    padding: 18px;
    border: 1px solid #d0d0cd;
    background: #fff;
}

.agency-panel small {
    color: #6e6e6e;
    font-size: 10px;
}

.agency-panel h3 {
    margin: 8px 0 16px;
    font-size: 20px;
}

.campaign-row {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e1e1df;
    font-size: 10px;
}

.campaign-row i {
    width: 28px;
    height: 28px;
    background: #171717;
}

.campaign-row strong {
    font-size: 11px;
}

.content-calendar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.content-calendar span {
    aspect-ratio: 1;
    border: 1px solid #d8d8d5;
    background: #ededeb;
}

.content-calendar span:nth-child(3),
.content-calendar span:nth-child(6),
.content-calendar span:nth-child(10) {
    background: #111;
}

.metric-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid #e1e1df;
    font-size: 10px;
}

.metric-line strong {
    font-size: 18px;
}

.media-scene {
    display: grid;
    min-height: 500px;
    align-content: end;
    justify-items: end;
}

.media-frame {
    width: 500px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
}

.media-frame-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 11px;
}

.media-frame-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #222;
}

.media-frame-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.play-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    transform: translate(-50%, -50%);
}

.play-mark svg {
    width: 21px;
}

.ad-scene {
    position: absolute;
    inset: 42px -60px 40px 40px;
}

.ad-dashboard {
    position: absolute;
    inset: 0 0 54px 0;
    padding: 22px;
    color: var(--ink);
    background: #f7f7f5;
    box-shadow: var(--shadow);
    transform: perspective(1200px) rotateY(-7deg);
}

.ad-dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #d5d5d1;
}

.ad-dashboard-head strong {
    font-size: 14px;
}

.ad-dashboard-head span {
    padding: 6px 9px;
    border: 1px solid #ccc;
    font-size: 8px;
}

.ad-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.ad-kpi {
    padding: 14px;
    border: 1px solid #d3d3cf;
    background: #fff;
}

.ad-kpi span {
    display: block;
    color: #777;
    font-size: 8px;
}

.ad-kpi strong {
    font-size: 20px;
}

.ad-chart {
    display: flex;
    height: 180px;
    align-items: end;
    gap: 10px;
    padding: 18px;
    border: 1px solid #d3d3cf;
    background: #fff;
}

.ad-chart span {
    flex: 1;
    min-height: 18px;
    background: #111;
}

.ad-chart span:nth-child(2) {
    height: 48%;
}

.ad-chart span:nth-child(3) {
    height: 64%;
}

.ad-chart span:nth-child(4) {
    height: 42%;
}

.ad-chart span:nth-child(5) {
    height: 79%;
}

.ad-chart span:nth-child(6) {
    height: 96%;
}

.section {
    padding-block: 112px;
}

.section.dark-section {
    color: var(--paper);
    background: var(--ink);
}

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

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(300px, 0.52fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 62px;
}

.section-intro h2 {
    max-width: 820px;
    margin-bottom: 0;
}

.section-intro p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.dark-section .section-intro p {
    color: #bdbdbd;
}

.statement {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: end;
    gap: 70px;
}

.statement h2 {
    max-width: 960px;
    margin-bottom: 0;
}

.statement-note {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 400px;
    flex-direction: column;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    transition: color 180ms ease, background 180ms ease;
}

.service-card:hover {
    color: var(--paper);
    background: var(--ink);
}

.service-card-number {
    color: var(--quiet);
    font-size: 12px;
}

.service-card-icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin: 50px 0 34px;
    place-items: center;
    border: 1px solid currentColor;
}

.service-card-icon svg {
    width: 23px;
}

.service-card h3 {
    margin-bottom: 14px;
}

.service-card p {
    margin-bottom: 30px;
    color: var(--muted);
}

.service-card:hover p {
    color: #bdbdbd;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
}

.text-link svg {
    width: 17px;
    transition: transform 160ms ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.showcase-band {
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
}

.showcase-grid {
    display: grid;
    min-height: 760px;
    grid-template-columns: minmax(0, 0.74fr) minmax(580px, 1.26fr);
    align-items: center;
    gap: 30px;
}

.showcase-copy {
    padding-block: 92px;
}

.showcase-copy h2 {
    margin-bottom: 24px;
}

.showcase-copy p {
    max-width: 540px;
    margin-bottom: 32px;
    color: #bdbdbd;
    font-size: 18px;
}

.showcase-scene {
    position: relative;
    min-height: 680px;
}

.showcase-scene .device.desktop {
    top: 100px;
    right: -120px;
}

.showcase-scene .device.tablet {
    right: 420px;
    bottom: 25px;
}

.showcase-scene .device.phone {
    right: 70px;
    bottom: 8px;
}

.process-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.process-item {
    display: grid;
    grid-template-columns: 90px 1fr minmax(260px, 0.6fr);
    align-items: center;
    gap: 40px;
    min-height: 150px;
    border-bottom: 1px solid var(--line);
}

.process-item > span {
    color: var(--quiet);
    font-size: 13px;
}

.process-item h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 38px);
}

.process-item p {
    margin: 0;
    color: var(--muted);
}

.logo-strip {
    overflow: hidden;
    border-block: 1px solid var(--line);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: logo-marquee 32s linear infinite;
}

.logo-item {
    display: grid;
    width: 270px;
    height: 150px;
    flex: 0 0 auto;
    place-items: center;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.logo-item img {
    width: 100%;
    max-width: 185px;
    max-height: 72px;
    object-fit: contain;
    filter: grayscale(1);
}

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

.production-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--paper-soft);
}

.production-image {
    min-height: 650px;
    overflow: hidden;
}

.production-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.production-copy {
    display: grid;
    align-content: center;
    padding: 80px max(48px, calc((100vw - var(--container)) / 2));
    padding-left: 80px;
}

.production-copy h2 {
    margin-bottom: 24px;
}

.production-copy p {
    max-width: 570px;
    color: var(--muted);
    font-size: 18px;
}

.production-copy ul {
    display: grid;
    gap: 11px;
    margin: 20px 0 32px;
    padding: 0;
    list-style: none;
}

.production-copy li {
    display: flex;
    gap: 10px;
}

.production-copy li svg {
    width: 18px;
    flex: 0 0 auto;
    margin-top: 4px;
}

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

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    display: grid;
    width: 100%;
    min-height: 92px;
    grid-template-columns: 1fr 40px;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.faq-question span {
    font-size: 20px;
    font-weight: 550;
}

.faq-question i {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-question i::before,
.faq-question i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: var(--ink);
    content: "";
    transform: translate(-50%, -50%);
}

.faq-question i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 160ms ease;
}

.faq-item.is-open .faq-question i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms ease;
}

.faq-answer p,
.faq-answer ul {
    max-width: 900px;
    margin: 0 0 28px;
    color: var(--muted);
}

.faq-answer ul {
    display: grid;
    gap: 6px;
    padding-left: 19px;
}

.cta-band {
    padding-block: 90px;
    color: var(--paper);
    background: var(--ink);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
}

.cta-inner h2 {
    max-width: 840px;
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    gap: 10px;
}

.site-footer {
    padding-block: 70px 28px;
    color: #c9c9c9;
    background: #111;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 0.7fr 0.7fr;
    gap: 80px;
    padding-bottom: 56px;
}

.footer-brand-logo {
    display: block;
    width: 210px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 410px;
    color: #8e8e8e;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--paper);
    font-size: 14px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column a {
    color: #9c9c9c;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--paper);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #303030;
    color: #737373;
    font-size: 12px;
}

.page-hero {
    position: relative;
    display: grid;
    min-height: 700px;
    align-items: end;
    overflow: hidden;
    padding-top: var(--header-height);
    color: var(--paper);
    background: var(--ink);
}

.page-hero.compact {
    min-height: 560px;
}

.production-page-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: grayscale(1) contrast(1.08);
    opacity: 0.48;
}

.production-page-hero::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    content: "";
}

.production-page-hero .page-hero-inner {
    z-index: 2;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    padding-block: 120px 90px;
}

.page-hero h1 {
    max-width: 1000px;
    margin-bottom: 24px;
    font-size: clamp(44px, 5vw, 68px);
}

.page-hero p {
    max-width: 720px;
    color: #c3c3c3;
    font-size: 19px;
}

.page-hero .hero-scene {
    position: absolute;
    top: 90px;
    right: max(-120px, calc((100vw - var(--container)) / 2 - 100px));
    width: min(760px, 54vw);
    height: 560px;
    opacity: 0.66;
}

.page-hero.has-scene .page-hero-inner {
    width: min(620px, calc(100% - 48px));
    max-width: 620px;
    margin-left: max(24px, calc((100vw - var(--container)) / 2));
}

.page-hero.has-scene::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(10, 10, 10, 0.22);
    content: "";
}

.lms-roles {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 60px;
}

.role-tabs {
    display: grid;
    align-content: start;
    border-top: 1px solid var(--line);
}

.role-tab {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.role-tab span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid var(--line);
}

.role-tab svg {
    width: 16px;
}

.role-tab.is-active {
    color: var(--ink);
    font-weight: 600;
}

.role-tab.is-active span {
    color: var(--paper);
    border-color: var(--ink);
    background: var(--ink);
}

.role-stage {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
}

.role-view {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 36px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.role-view.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.role-view .device.desktop {
    top: 35px;
    right: -95px;
    width: 720px;
    transform: none;
}

.role-view .device.tablet {
    right: 70px;
    bottom: 92px;
}

.role-view .device.phone {
    right: 40px;
    bottom: 100px;
}

.role-caption {
    position: relative;
    z-index: 3;
    max-width: 420px;
    align-self: end;
}

.role-caption h3 {
    margin-bottom: 8px;
}

.role-caption p {
    margin-bottom: 0;
    color: #a9a9a9;
}

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

.feature-item {
    min-height: 250px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-item svg {
    width: 25px;
    margin-bottom: 48px;
}

.feature-item h3 {
    margin-bottom: 12px;
}

.feature-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.deliverable {
    min-height: 260px;
    padding: 36px;
    background: var(--paper);
}

.deliverable > span {
    display: inline-flex;
    margin-bottom: 50px;
    color: var(--quiet);
    font-size: 12px;
}

.deliverable h3 {
    max-width: 430px;
}

.deliverable p {
    max-width: 520px;
    color: var(--muted);
}

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

.media-card {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
}

.media-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.62;
    transition: transform 500ms ease, opacity 500ms ease;
}

.media-card:hover img {
    opacity: 0.76;
    transform: scale(1.03);
}

.media-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.04) 70%);
    content: "";
}

.media-card-copy {
    position: absolute;
    z-index: 2;
    right: 32px;
    bottom: 32px;
    left: 32px;
}

.media-card-copy span {
    display: block;
    margin-bottom: 10px;
    color: #bdbdbd;
    font-size: 12px;
}

.media-card-copy h3 {
    max-width: 460px;
    margin-bottom: 0;
    font-size: 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 90px;
}

.contact-aside {
    display: grid;
    align-content: start;
    gap: 32px;
}

.contact-line {
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.contact-line span {
    display: block;
    margin-bottom: 7px;
    color: var(--quiet);
    font-size: 12px;
}

.contact-line a {
    font-size: 20px;
    font-weight: 550;
}

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

.field {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 13px;
    font-weight: 550;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 0;
    outline: 0;
    background: var(--paper);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--ink);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
    border-color: #c71920;
    box-shadow: 0 0 0 1px #c71920;
}

.field-error {
    min-height: 17px;
    color: #b7141b;
    font-size: 12px;
    line-height: 1.4;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.captcha-row {
    display: grid;
    grid-template-columns: 180px 52px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.captcha-image {
    display: block;
    width: 180px;
    height: 52px;
    border: 1px solid var(--line);
    background: #f5f6f8;
    object-fit: cover;
}

.captcha-refresh {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
}

.captcha-refresh svg {
    width: 18px;
    height: 18px;
}

.consent-field {
    display: block;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--quiet);
    font-size: 13px;
    line-height: 1.6;
}

.consent-label input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
    accent-color: var(--ink);
}

.consent-label a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-status {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.5;
}

.form-status.is-success {
    border-color: #a6d8bd;
    background: #effaf4;
    color: #12633a;
}

.form-status.is-error {
    border-color: #f0b2b5;
    background: #fff3f3;
    color: #a91017;
}

.legal-copy {
    max-width: 900px;
}

.legal-copy h2 {
    margin: 34px 0 12px;
    font-size: clamp(20px, 2vw, 28px);
}

.legal-copy h2:first-child {
    margin-top: 0;
}

.legal-copy p {
    color: var(--quiet);
    line-height: 1.8;
}

.error-page {
    min-height: 70vh;
}

.contact-form .button {
    min-height: 52px;
    justify-self: start;
}

.contact-form .button:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 190px 1fr auto;
        gap: 18px;
    }

    .desktop-nav {
        gap: 18px;
    }

    .hero-slide-inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    }

    .hero-spin-shell {
        width: min(100%, 500px);
    }

    .hero-spin-window {
        width: min(74%, 380px);
    }

    .device.desktop {
        right: -190px;
    }

    .device.tablet {
        right: 270px;
    }

    .agency-board,
    .ad-scene {
        right: -170px;
    }

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

    .showcase-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .showcase-scene .device.desktop {
        right: -240px;
    }

    .showcase-scene .device.tablet {
        right: 230px;
    }

    .production-copy {
        padding-left: 56px;
        padding-right: 40px;
    }
}

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

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

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .brand {
        width: 166px;
    }

    .menu-toggle {
        display: inline-flex;
    }

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

    .hero-slide {
        align-items: start;
    }

    .hero-slide::before {
        background: rgba(0, 0, 0, 0.28);
    }

    .hero-slide-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-block: 86px 86px;
    }

    .hero-copy {
        max-width: 680px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(39px, 10vw, 68px);
    }

    .hero-digital-art {
        min-height: 280px;
        justify-content: center;
    }

    .hero-spin-shell {
        width: 340px;
        height: 280px;
    }

    .hero-spin-ring {
        inset: 9% 0 7%;
    }

    .hero-spin-window {
        width: min(203px, 60vw);
    }

    .hero-scene {
        min-height: 390px;
    }

    .device.desktop {
        top: 12px;
        right: -140px;
        width: 590px;
    }

    .device.tablet {
        right: 230px;
        bottom: -30px;
        width: 215px;
    }

    .device.phone {
        right: 36px;
        bottom: -48px;
        width: 142px;
    }

    .agency-board,
    .ad-scene {
        inset: 18px -80px -30px 20px;
    }

    .media-scene {
        min-height: 380px;
    }

    .media-frame {
        width: min(520px, 86vw);
    }

    .section {
        padding-block: 84px;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 42px;
    }

    .statement {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .statement-note {
        max-width: 360px;
    }

    .showcase-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .showcase-copy {
        padding-bottom: 0;
    }

    .showcase-scene {
        min-height: 600px;
    }

    .showcase-scene .device.desktop {
        right: -150px;
    }

    .showcase-scene .device.tablet {
        right: 250px;
    }

    .process-item {
        grid-template-columns: 60px 1fr;
        padding-block: 24px;
    }

    .process-item p {
        grid-column: 2;
    }

    .production-feature {
        grid-template-columns: 1fr;
    }

    .production-image {
        min-height: 480px;
    }

    .production-copy {
        padding: 70px 32px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .page-hero.has-scene .page-hero-inner {
        margin-left: 0;
    }

    .page-hero.has-scene .hero-scene {
        right: -280px;
        opacity: 0.45;
    }

    .lms-roles {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .role-tab {
        min-height: 66px;
        grid-template-columns: 28px 1fr;
        padding-inline: 10px;
        border-right: 1px solid var(--line);
    }

    .role-stage {
        min-height: 620px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

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

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 34px;
    }

    .brand {
        width: 148px;
    }

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

    .hero-slide-inner {
        align-content: start;
        gap: 12px;
        padding-block: 82px 78px;
    }

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

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions .button {
        width: 100%;
        padding-inline: 10px;
    }

    .hero-digital-art {
        min-height: 240px;
    }

    .hero-spin-shell {
        width: min(280px, 78vw);
        height: 240px;
    }

    .hero-spin-label {
        top: 2%;
        right: 5%;
    }

    .hero-spin-label-rfr {
        top: auto;
        right: auto;
        bottom: 2%;
        left: 5%;
    }

    .hero-spin-window {
        width: min(165px, 48vw);
    }

    .hero-scene {
        min-height: 245px;
    }

    .device.desktop {
        top: 12px;
        right: -218px;
        width: 525px;
        border-width: 6px;
        transform: none;
    }

    .device.tablet {
        right: 135px;
        bottom: -14px;
        width: 176px;
        border-width: 5px;
    }

    .device.phone {
        right: 4px;
        bottom: -20px;
        width: 112px;
        border-width: 5px;
    }

    .mock-sidebar {
        display: none;
    }

    .desktop-screen {
        grid-template-columns: 1fr;
    }

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

    .mock-stat:nth-child(n+3) {
        display: none;
    }

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

    .mock-grid .mock-panel:last-child {
        display: none;
    }

    .agency-board {
        inset: 8px -150px -10px 10px;
        width: 590px;
        transform: none;
    }

    .ad-scene {
        inset: 8px -190px -12px 8px;
        width: 600px;
    }

    .ad-dashboard {
        transform: none;
    }

    .media-scene {
        min-height: 245px;
    }

    .media-frame {
        width: 100%;
    }

    .hero-dots {
        right: auto;
        bottom: 26px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-dot {
        width: 28px;
    }

    .hero-counter {
        display: none;
    }

    .section {
        padding-block: 68px;
    }

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

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

    .service-card-icon {
        margin-block: 36px 25px;
    }

    .showcase-scene {
        min-height: 470px;
    }

    .showcase-scene .device.desktop {
        top: 40px;
        right: -230px;
    }

    .showcase-scene .device.tablet {
        right: 135px;
    }

    .showcase-scene .device.phone {
        right: 5px;
    }

    .process-item {
        grid-template-columns: 38px 1fr;
        gap: 18px;
    }

    .process-item p {
        grid-column: 1 / -1;
    }

    .logo-item {
        width: 210px;
        height: 125px;
    }

    .production-image {
        min-height: 370px;
    }

    .production-copy {
        padding: 56px 22px;
    }

    .faq-question {
        min-height: 78px;
    }

    .faq-question span {
        font-size: 17px;
    }

    .cta-band {
        padding-block: 68px;
    }

    .cta-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        grid-column: auto;
    }

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

    .page-hero {
        min-height: 610px;
    }

    .page-hero.compact {
        min-height: 500px;
    }

    .page-hero-inner {
        padding-block: 105px 60px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .page-hero h1 {
        font-size: clamp(40px, 8vw, 58px);
    }

    .page-hero.has-scene .page-hero-inner {
        width: min(620px, calc(100% - 48px));
    }

    .page-hero.has-scene .hero-scene {
        top: 170px;
        right: -310px;
        width: 620px;
    }

    .role-tabs {
        grid-template-columns: 1fr;
    }

    .role-tab {
        min-height: 58px;
    }

    .role-stage {
        min-height: 570px;
    }

    .role-view {
        padding: 20px;
    }

    .role-view .device.desktop {
        top: 24px;
        right: -255px;
        width: 560px;
    }

    .role-view .device.tablet {
        right: 110px;
        bottom: 110px;
        width: 160px;
    }

    .role-view .device.phone {
        right: 8px;
        bottom: 112px;
        width: 100px;
    }

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

    .deliverable-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-card {
        min-height: 390px;
    }

    .media-card-copy {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .media-card-copy h3 {
        font-size: 27px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: auto;
    }

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

    .captcha-row {
        grid-template-columns: minmax(0, 1fr) 52px;
    }

    .captcha-image {
        width: 100%;
    }

    .captcha-row input {
        grid-column: 1 / -1;
    }
}

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

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