:root {
    --ink: #080b17;
    --ink-soft: #111525;
    --paper: #f2f0e9;
    --paper-muted: #d7d5ce;
    --white: #ffffff;
    --blue: #5f72ff;
    --blue-deep: #3549ee;
    --lime: #c9ff4a;
    --line-dark: rgba(255, 255, 255, 0.13);
    --line-light: rgba(8, 11, 23, 0.16);
    --font-display: "Syne", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 96px;
}

body {
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 999px;
}

a {
    color: inherit;
}

a:focus-visible { outline: 3px solid var(--blue); outline-offset: 5px; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 10001; padding: 12px 20px; background: var(--lime); color: var(--ink); }
.skip-link:focus { top: 16px; }

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

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

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

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

.section {
    padding: 132px 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(8, 11, 23, 0.82);
    border-color: var(--line-dark);
    backdrop-filter: blur(18px);
}

.nav-content {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
}

.brand img {
    width: 144px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: var(--paper-muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--lime);
    color: var(--ink);
    transform: translateY(-2px);
}

.nav-cta svg,
.footer-social svg {
    width: 16px;
    height: 16px;
}

.hero {
    min-height: 100vh;
    padding: 150px 0 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.26;
    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: 74px 74px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-orb-one {
    width: 440px;
    height: 440px;
    right: 5%;
    top: 10%;
    background: rgba(95, 114, 255, 0.18);
}

.hero-orb-two {
    width: 280px;
    height: 280px;
    left: 12%;
    bottom: -10%;
    background: rgba(201, 255, 74, 0.08);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.75fr);
    gap: 84px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--paper-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 6px rgba(201, 255, 74, 0.1);
}

.hero h1 {
    max-width: 800px;
    font-family: var(--font-display);
    font-size: clamp(3.3rem, 5.2vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.07em;
    line-height: 0.94;
}

.hero h1 span {
    color: var(--lime);
    font-style: italic;
}

.hero-copy > p {
    max-width: 690px;
    margin-top: 30px;
    color: #b8bbc8;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button svg {
    width: 18px;
}

.button-primary {
    background: var(--blue);
    color: var(--white);
}

.button-primary:hover {
    background: var(--blue-deep);
}

.button-ghost {
    border: 1px solid var(--line-dark);
    color: var(--paper);
}

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

.hero-visual {
    position: relative;
    max-width: 430px;
    justify-self: end;
}

.portrait-card {
    position: relative;
    height: min(61vh, 600px);
    min-height: 480px;
    border-radius: 220px 220px 24px 24px;
    overflow: hidden;
    background: var(--ink-soft);
    border: 1px solid var(--line-dark);
}

.portrait-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 11, 23, 0.8), transparent 45%);
}

.portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    filter: saturate(0.85) contrast(1.05);
}

.portrait-label {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 134px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.28);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.05;
}

.floating-number {
    font-family: var(--font-body);
    font-size: 0.65rem;
}

.floating-card-top {
    top: 19%;
    left: -70px;
    background: var(--lime);
    color: var(--ink);
    transform: rotate(-5deg);
}

.floating-card-bottom {
    right: -45px;
    bottom: 17%;
    background: var(--blue);
    color: var(--white);
    transform: rotate(4deg);
}

.hero-footer {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    padding-top: 26px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #8e92a0;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-footer svg {
    width: 16px;
    color: var(--blue);
}

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

.about-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 70px;
}

.section-kicker {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: #64666c;
    font-size: 0.83rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-kicker span {
    color: var(--blue-deep);
    font-weight: 700;
}

.about-content h2 {
    max-width: 920px;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5.3vw, 5.6rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.06em;
}

.about-content h2 em {
    color: var(--blue-deep);
    font-weight: 500;
}

.about-columns {
    max-width: 900px;
    margin-top: 58px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.about-columns p {
    color: #53555b;
    font-size: 1.04rem;
}

.expertise-list {
    margin-top: 65px;
    padding-top: 28px;
    border-top: 1px solid var(--line-light);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 28px;
}

.expertise-list span {
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
    font-weight: 600;
}

.expertise-list span::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.services {
    background: var(--ink);
}

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

.mini-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--lime);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.process-intro h2 {
    max-width: 760px;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.section-heading > p,
.process-intro > p {
    color: #a8abb7;
    font-size: 1rem;
}

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

.service-card {
    min-height: 470px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line-dark);
    border-radius: 28px;
    background: rgba(255,255,255,0.025);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.28);
}

.service-card-accent {
    background: var(--blue);
    border-color: var(--blue);
}

.service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9296a5;
    font-size: 0.72rem;
}

.service-card-accent .service-top {
    color: rgba(255,255,255,0.7);
}

.service-top svg {
    width: 34px;
    height: 34px;
    color: var(--lime);
}

.service-card-accent .service-top svg {
    color: var(--white);
}

.service-card h3 {
    margin-top: auto;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.2vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.service-card p {
    color: #a8abb7;
    font-size: 0.93rem;
}

.service-card-accent p {
    color: rgba(255,255,255,0.78);
}

.service-tags {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    padding: 7px 10px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    color: #c9cbd3;
    font-size: 0.7rem;
}

.service-card-accent .service-tags span {
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}

.featured-case {
    padding-top: 30px;
    background: var(--ink);
}

.case-card {
    min-height: 720px;
    min-width: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    border-radius: 34px;
    overflow: hidden;
    background: var(--lime);
    color: var(--ink);
}

.case-visual {
    position: relative;
    min-width: 0;
    min-height: 620px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(201,255,74,0.24), transparent 30%),
        radial-gradient(circle at 75% 75%, rgba(95,114,255,0.35), transparent 35%),
        #0f1428;
}

.case-visual::after {
    content: "";
    position: absolute;
    z-index: 0;
    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: 42px 42px;
    pointer-events: none;
}

.case-word {
    position: absolute;
    z-index: 1;
    left: 7%;
    top: 7%;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.08em;
}

.case-word-outline {
    top: 20%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.social-mock {
    position: absolute;
    z-index: 3;
    width: min(40%, 286px);
    right: 5%;
    top: 20%;
    padding: 12px;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: 0 28px 70px rgba(0,0,0,0.4);
    transform: rotate(4deg);
}

.social-profile {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 700;
}

.profile-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    border: 4px solid var(--lime);
}

.social-art {
    aspect-ratio: 4 / 5;
    border-radius: 13px;
    overflow: hidden;
    background: #6c00c8;
}

.social-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.social-actions svg:last-child {
    margin-left: auto;
}

.social-actions svg {
    width: 17px;
}

.social-caption {
    margin-top: 7px;
    color: #242733;
    font-size: 0.58rem;
    line-height: 1.35;
}

.video-mock {
    position: absolute;
    z-index: 4;
    left: 5%;
    bottom: 6%;
    width: min(58%, 410px);
    padding: 10px;
    border-radius: 17px;
    background: rgba(10, 14, 32, 0.92);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-size: 0.72rem;
    box-shadow: 0 28px 65px rgba(0,0,0,0.42);
    transform: rotate(-2deg);
}

.video-label {
    padding: 1px 3px 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255,255,255,0.76);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.video-label span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.video-label svg {
    width: 14px;
    height: 14px;
    color: var(--lime);
}

.video-mock video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border-radius: 11px;
    background: #050713;
    object-fit: cover;
}

.video-play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: calc(50% + 13px);
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.video-play svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
    fill: currentColor;
}

.video-mock.is-playing .video-play {
    opacity: 0;
    pointer-events: none;
}

.case-content {
    padding: 58px 52px;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.case-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(8,11,23,0.2);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.case-content h2 {
    margin-top: 72px;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 3.35vw, 3.2rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.07em;
    overflow-wrap: normal;
}

.case-lead {
    margin-top: 24px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.15;
}

.case-content > p:not(.case-lead) {
    margin-top: 24px;
    color: rgba(8,11,23,0.72);
    font-size: 0.95rem;
}

.case-deliveries {
    margin-top: auto;
    padding-top: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.case-deliveries div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
}

.case-deliveries svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

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

.projects-heading .mini-label {
    color: var(--blue-deep);
}

.projects-heading > p {
    color: #5b5d64;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 78px 24px;
}

.project-card {
    min-width: 0;
}

.project-large {
    grid-column: 1 / -1;
}

.project-featured .project-image {
    aspect-ratio: 2 / 1;
}

.project-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    overflow: hidden;
    background: #d9d7d0;
    text-decoration: none;
}

.project-large .project-image {
    aspect-ratio: 2 / 1;
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,11,23,0.18), transparent 45%);
    pointer-events: none;
}

.project-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.project-image-branded::after {
    z-index: 1;
    background: linear-gradient(90deg, rgba(8,11,23,0.78) 0%, rgba(8,11,23,0.35) 48%, rgba(8,11,23,0.08) 100%);
}

.project-brand-lockup,
.project-agency-badge {
    position: absolute;
    z-index: 2;
}

.project-brand-lockup {
    left: clamp(24px, 5vw, 70px);
    bottom: clamp(26px, 6vw, 72px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-brand-dcm {
    width: min(38%, 360px);
    padding: 20px 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 22px 60px rgba(0,0,0,0.24);
    backdrop-filter: blur(12px);
}

.project-brand-logo {
    width: 100%;
    max-height: 126px;
    object-fit: contain;
}

.project-brand-dcm span {
    width: 100%;
    margin-top: 4px;
    color: #05548c;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
}

.project-highlight-badge {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-status-badge {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 999px;
    background: rgba(8,11,23,0.68);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-help-screenshot > img {
    object-position: center top;
}

.project-abrace-screenshot > img {
    object-position: center top;
}

.project-blindamed > img {
    object-position: center 45%;
}

.project-brand-help {
    max-width: 440px;
    color: var(--white);
}

.project-brand-help strong {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.08em;
}

.project-brand-help strong span {
    color: #52c7d7;
}

.project-brand-help small {
    max-width: 310px;
    margin-top: 22px;
    color: rgba(255,255,255,0.82);
    font-size: clamp(0.72rem, 1.3vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.help-symbol {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #52c7d7;
    color: #09243c;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.project-help .project-cover {
    object-position: center;
}

.project-dcm .project-cover {
    object-position: center 46%;
}

.project-agency-badge {
    top: 20px;
    left: 20px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 999px;
    background: rgba(8,11,23,0.62);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-arrow,
.project-index {
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    transition: transform 0.25s ease;
}

.project-card:hover .project-arrow {
    transform: rotate(10deg) scale(1.08);
}

.project-arrow svg {
    width: 20px;
}

.project-index {
    width: auto;
    height: auto;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(8,11,23,0.78);
    color: var(--white);
    font-size: 0.7rem;
}

.project-details {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr minmax(180px, 0.7fr);
    gap: 35px;
    align-items: end;
}

.project-type {
    color: var(--blue-deep);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.project-details h3 {
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.project-details p {
    color: #606269;
    font-size: 0.84rem;
}

.project-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.project-case-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    color: var(--blue-deep);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.project-case-link:focus-visible {
    outline: 3px solid var(--blue-deep);
    outline-offset: 4px;
}

.project-credit {
    display: inline-flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--blue-deep);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.4;
}

.project-credit svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    margin-top: 1px;
}

.project-meta {
    display: block;
    max-width: 100%;
    color: #3f424b;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.project-domain {
    color: #797b82;
    font-size: 0.68rem;
    font-weight: 600;
}

.project-large .project-details p {
    max-width: 400px;
}

.faq {
    background: var(--ink-soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 100px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-intro h2 {
    max-width: 560px;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 4.7rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.faq-intro > p {
    max-width: 460px;
    margin-top: 26px;
    color: #a8abb7;
}

.faq-list {
    margin: 0;
}

.faq-item {
    padding: 32px 0;
    border-top: 1px solid var(--line-dark);
}

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

.faq-item dt {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.faq-item dd {
    max-width: 680px;
    margin-top: 14px;
    color: #a8abb7;
    font-size: 1rem;
}

.faq-item a { color: var(--paper); text-underline-offset: 4px; }

.process {
    background: var(--blue);
}

.process-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.process-intro {
    position: sticky;
    top: 130px;
}

.process-intro .mini-label {
    color: var(--lime);
}

.process-intro > p {
    max-width: 500px;
    margin-top: 28px;
    color: rgba(255,255,255,0.72);
}

.process-list {
    list-style: none;
}

.process-list li {
    padding: 36px 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.24);
}

.process-list li:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.24);
}

.process-list > li > span {
    color: var(--lime);
    font-size: 0.72rem;
    font-weight: 700;
}

.process-list h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: -0.04em;
}

.process-list p {
    margin-top: 8px;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
}

.contact {
    padding: 160px 0;
    background: var(--paper);
    color: var(--ink);
}

.contact-inner {
    text-align: center;
}

.contact .mini-label {
    color: var(--blue-deep);
}

.contact h2 {
    max-width: 1000px;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 6.7rem);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.contact h2 em {
    color: var(--blue-deep);
    font-weight: 500;
}

.contact-description { max-width: 640px; margin: 30px auto 0; color: #53555b; font-size: 1.0625rem; }

.contact-link {
    width: min(100%, 680px);
    margin: 70px auto 0;
    padding: 18px 18px 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-link span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    transition: transform 0.25s ease, background 0.25s ease;
}

.contact-link:hover span {
    transform: rotate(10deg);
    background: var(--blue);
}

.contact-link svg {
    width: 20px;
}

footer {
    padding: 52px 0;
    background: var(--ink);
}

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    min-height: 58px;
    padding: 0 20px 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    background: #20c968;
    color: #06170d;
    box-shadow: 0 16px 45px rgba(0,0,0,0.3);
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(32,201,104,0.3);
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.footer-brand img {
    width: 130px;
}

.footer-social {
    display: flex;
    gap: 26px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #aeb1bd;
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--lime);
}

.footer-content > p {
    justify-self: end;
    color: #757987;
    font-size: 0.72rem;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.reveal-pending {
    opacity: 0;
    transform: translateY(32px);
}

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

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

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

    .reveal, .reveal.reveal-pending {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1050px) {
    .hero-grid {
        gap: 50px;
    }

    .floating-card-top {
        left: -30px;
    }

    .floating-card-bottom {
        right: -20px;
    }

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

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

    .faq-layout {
        gap: 64px;
    }

    .case-visual {
        min-height: 700px;
    }

    .case-content {
        min-height: 600px;
    }

    .project-details {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 100px 0;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 130px;
    }

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

    .hero-visual {
        width: min(85%, 430px);
        justify-self: center;
        margin-top: 20px;
    }

    .hero-footer {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .section-heading,
    .process-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-intro,
    .faq-intro {
        position: static;
    }

    .case-content h2 {
        margin-top: 48px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 72px;
    }

    .project-large {
        grid-column: auto;
    }

    .project-large .project-image {
        aspect-ratio: 16 / 10;
    }

    .project-brand-dcm {
        width: min(46%, 330px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-content > p {
        justify-self: center;
    }
}

@media (max-width: 560px) {
    .section-heading > *, .process-layout > *, .process-list li > div { min-width: 0; }

    .section-heading h2, .process-intro h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        overflow-wrap: anywhere;
    }

    .process-list li { grid-template-columns: 32px minmax(0, 1fr); gap: 14px; }
    .process-list h3 { font-size: clamp(1.25rem, 5.6vw, 1.6rem); overflow-wrap: anywhere; }

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

    .nav-content {
        height: 76px;
    }

    .brand img {
        width: 112px;
    }

    .nav-cta {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .nav-cta svg {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 12.3vw, 3.5rem);
    }

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

    .button {
        width: 100%;
    }

    .hero-visual {
        width: 84%;
    }

    .portrait-card {
        min-height: 430px;
        height: 60vh;
    }

    .floating-card {
        min-width: 112px;
        padding: 14px;
        font-size: 0.78rem;
    }

    .floating-card-top {
        left: -28px;
    }

    .floating-card-bottom {
        right: -28px;
    }

    .hero-footer {
        display: none;
    }

    .about-columns,
    .expertise-list,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-columns {
        gap: 24px;
        margin-top: 40px;
    }

    .expertise-list {
        margin-top: 46px;
    }

    .service-card,
    .service-card:last-child {
        min-height: 390px;
        grid-column: auto;
    }

    .case-card {
        border-radius: 24px;
    }

    .case-visual {
        min-height: 590px;
    }

    .case-word {
        top: 7%;
        font-size: 4.2rem;
    }

    .case-word-outline {
        top: 18%;
        font-size: 2.45rem;
    }

    .social-mock {
        width: 52%;
        right: 3%;
        top: 25%;
        padding: 8px;
        border-radius: 16px;
    }

    .video-mock {
        left: 3%;
        bottom: 4%;
        width: 68%;
        padding: 7px;
        border-radius: 13px;
    }

    .video-label {
        padding-bottom: 6px;
        font-size: 0.49rem;
    }

    .video-mock video {
        border-radius: 8px;
    }

    .video-play {
        top: calc(50% + 9px);
        width: 42px;
        height: 42px;
    }

    .video-play svg {
        width: 17px;
        height: 17px;
    }

    .social-profile {
        margin-bottom: 6px;
        font-size: 0.54rem;
    }

    .profile-dot {
        width: 17px;
        height: 17px;
        border-width: 3px;
    }

    .social-actions {
        margin-top: 6px;
    }

    .social-actions svg {
        width: 14px;
        height: 14px;
    }

    .social-caption {
        display: none;
    }

    .case-content {
        min-height: auto;
        padding: 36px 24px;
    }

    .case-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .case-content h2 {
        font-size: 2rem;
    }

    .case-deliveries {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .project-image,
    .project-large .project-image {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    .project-featured .project-image {
        aspect-ratio: 16 / 10;
    }

    .project-arrow {
        width: 44px;
        height: 44px;
        top: 14px;
        right: 14px;
    }

    .project-agency-badge {
        top: 14px;
        left: 14px;
        padding: 7px 10px;
        font-size: 0.58rem;
    }

    .project-highlight-badge,
    .project-status-badge {
        top: 14px;
        left: 14px;
        padding: 7px 10px;
        font-size: 0.58rem;
    }

    .project-brand-lockup {
        left: 22px;
        bottom: 22px;
    }

    .project-brand-dcm {
        width: 54%;
        padding: 12px 14px;
        border-radius: 15px;
    }

    .project-brand-logo {
        max-height: 84px;
    }

    .project-brand-dcm span {
        font-size: 0.48rem;
    }

    .project-brand-help strong {
        font-size: 3.2rem;
    }

    .project-brand-help small {
        max-width: 220px;
        margin-top: 12px;
        font-size: 0.61rem;
    }

    .help-symbol {
        width: 34px;
        height: 34px;
        margin-bottom: 12px;
        font-size: 1.45rem;
    }

    .contact {
        padding: 110px 0;
    }

    .contact h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .contact-link {
        margin-top: 45px;
        padding-left: 5px;
        font-size: 0.88rem;
    }

    .footer-social {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        min-height: 56px;
        padding: 0;
    }

    .whatsapp-float span {
        display: none;
    }
}
