:root {
    --ink: #0a0d18;
    --ink-2: #121727;
    --paper: #f7f7f3;
    --white: #ffffff;
    --soft: #eceee8;
    --line: rgba(10, 13, 24, 0.13);
    --line-light: rgba(255, 255, 255, 0.16);
    --purple: #7c5cff;
    --lime: #b7ff3c;
    --cyan: #8cecff;
    --text: #555b6a;
    --font: "Manrope", Arial, sans-serif;
    --container: 1240px;
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --shadow: 0 30px 80px rgba(10, 13, 24, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    color: inherit;
}

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

h1,
h2,
h3,
h4 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

h1 {
    font-size: 76px;
}

h2 {
    font-size: 52px;
}

h3 {
    font-size: 26px;
}

p {
    margin-bottom: 20px;
}

.container {
    width: calc(100% - 48px);
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

.section-pad {
    padding-top: 120px;
    padding-bottom: 120px;
}

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

.section--ink {
    background: var(--ink-2);
}

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

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

.screen-reader-text:focus,
.skip-link:focus {
    top: 12px;
    left: 12px;
    z-index: 99999;
    width: auto;
    height: auto;
    padding: 12px 18px;
    clip: auto;
    color: var(--ink);
    background: var(--lime);
    border-radius: 8px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #676d78;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 2px;
    content: "";
    background: var(--purple);
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.67);
}

.eyebrow--light::before {
    background: var(--lime);
}

.section-title span,
.page-hero h1 span,
.home-hero h1 span,
.service-hero h1 span {
    color: var(--purple);
}

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

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

.section-copy {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--text);
    font-size: 18px;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 56px;
    padding: 14px 16px 14px 24px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.button::before {
    position: absolute;
    inset: 100% 0 auto;
    height: 100%;
    content: "";
    background: var(--purple);
    border-radius: inherit;
    transition: inset 0.3s ease;
}

.button > * {
    position: relative;
    z-index: 1;
}

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

.button:hover::before {
    inset: 0 0 auto;
}

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

.button--ghost {
    color: var(--white);
    background: transparent;
    border-color: var(--line-light);
}

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

.section--dark .button--outline {
    color: var(--white);
    border-color: var(--line-light);
}

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

.button--small {
    min-height: 46px;
    padding: 10px 12px 10px 20px;
}

.button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.text-link span {
    transition: transform 0.25s ease;
}

.text-link:hover span {
    transform: translate(3px, -3px);
}

.text-link--large {
    margin-bottom: 10px;
    font-size: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    color: var(--white);
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(247, 247, 243, 0.92);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.site-header__inner {
    display: flex;
    align-items: center;
    min-height: 86px;
}

.brand,
.custom-logo-link {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

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

.brand__mark {
    position: relative;
    display: block;
    width: 38px;
    height: 38px;
    background: var(--lime);
    border-radius: 12px;
    transform: rotate(-6deg);
}

.brand__mark span {
    position: absolute;
    left: 9px;
    width: 20px;
    height: 4px;
    background: var(--ink);
    border-radius: 8px;
}

.brand__mark span:nth-child(1) { top: 9px; width: 13px; }
.brand__mark span:nth-child(2) { top: 17px; }
.brand__mark span:nth-child(3) { top: 25px; width: 16px; }

.brand__text {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.brand__text span {
    color: var(--lime);
}

.is-scrolled .brand__text span {
    color: var(--purple);
}

.primary-nav {
    margin-right: auto;
    margin-left: auto;
}

.primary-nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav__menu a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
}

.primary-nav__menu a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.primary-nav__menu a:hover::after,
.primary-nav__menu .current-menu-item > a::after,
.primary-nav__menu .current_page_item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.is-scrolled .primary-nav__menu a::after {
    background: var(--purple);
}

.site-header__cta .button {
    color: var(--white);
    border-color: var(--line-light);
}

.site-header.is-scrolled .site-header__cta .button {
    color: var(--ink);
    border-color: var(--line);
}

.menu-toggle,
.primary-nav__mobile-cta {
    display: none;
}

/* Hero */
.home-hero {
    padding-top: 170px;
}

.home-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 70px;
    min-height: 670px;
    padding-bottom: 100px;
}

.home-hero__content,
.home-hero__visual {
    width: calc(50% - 35px);
}

.home-hero__content h1 {
    max-width: 720px;
    margin-bottom: 28px;
}

.home-hero__copy {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 19px;
}

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

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

.hero-proof__faces {
    display: flex;
}

.hero-proof__faces span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-left: -8px;
    color: var(--ink);
    background: var(--cyan);
    border: 2px solid var(--ink);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

.hero-proof__faces span:first-child { margin-left: 0; background: var(--lime); }
.hero-proof__faces span:last-child { background: var(--purple); color: var(--white); }

.hero-proof p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.hero-proof strong {
    display: block;
    color: var(--white);
    font-size: 15px;
}

.hero-visual__frame {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    transform: rotate(2deg);
}

.hero-visual__frame > img {
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    border-radius: 28px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    box-shadow: var(--shadow);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.floating-card--top { top: 36px; left: -40px; }
.floating-card--bottom { right: -36px; bottom: 45px; border-radius: 18px; }

.floating-card--bottom span {
    max-width: 66px;
    font-size: 11px;
    line-height: 1.25;
}

.floating-card--bottom .floating-card__number {
    max-width: none;
    color: var(--purple);
    font-size: 24px;
}

.status-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #25c76f;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(37, 199, 111, 0.13);
}

.showreel-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    font-size: 14px;
    font-weight: 700;
}

.showreel-link__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    font-size: 11px;
}

.orb {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.orb--one {
    top: 80px;
    right: 8%;
    width: 360px;
    height: 360px;
    background: rgba(124, 92, 255, 0.22);
    filter: blur(80px);
}

.orb--two {
    bottom: 10%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(183, 255, 60, 0.09);
    filter: blur(80px);
}

.hero-marquee {
    padding: 18px 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--lime);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-marquee div {
    width: max-content;
    animation: marquee 25s linear infinite;
}

.hero-marquee span {
    margin: 0 28px;
}

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

.client-strip {
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
}

.client-strip__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.client-strip__inner > p {
    width: 220px;
    margin: 0;
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

.client-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: calc(100% - 270px);
}

.client-logos span {
    color: #7b7f88;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

/* Services */
.split-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 14px);
    min-height: 380px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.service-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 64px;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 16px;
    transform: rotate(-4deg);
}

.icon-box svg {
    width: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.icon-box--large {
    width: 74px;
    height: 74px;
    margin-bottom: 34px;
    border-radius: 20px;
}

.icon-box--large svg { width: 36px; }

.service-card__number {
    color: #9b9fa9;
    font-size: 12px;
    font-weight: 700;
}

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

.service-card h3 a::after {
    position: absolute;
    inset: 0;
    content: "";
}

.service-card p {
    margin-bottom: 28px;
    color: var(--text);
    font-size: 15px;
}

.service-card:hover p,
.service-card:hover .service-card__number {
    color: rgba(255, 255, 255, 0.61);
}

.service-card .text-link {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-top: auto;
}

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

.stats-grid {
    display: flex;
    justify-content: space-between;
}

.stat {
    width: 25%;
    padding: 0 28px;
    border-right: 1px solid var(--line-light);
}

.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; border-right: 0; }

.stat p {
    margin: 0 0 6px;
    color: var(--lime);
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.07em;
}

.stat > span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

/* Projects */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 70px 24px;
}

.project-card {
    width: calc(50% - 12px);
}

.project-card__media {
    position: relative;
    display: block;
    margin-bottom: 25px;
    overflow: hidden;
    background: #dedee5;
    border-radius: var(--radius-md);
}

.project-card__media img {
    aspect-ratio: 1.3 / 1;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.project-card__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card:hover .project-card__media img { transform: scale(1.045); }
.project-card:hover .project-card__arrow { opacity: 1; transform: translateY(0); }

.project-card__content > p {
    margin-bottom: 10px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-card__content h3 {
    margin-bottom: 10px;
    font-size: 30px;
}

.project-card__content > span {
    display: block;
    max-width: 520px;
    color: var(--text);
    font-size: 15px;
}

/* Process */
.process-section .section-heading {
    margin-bottom: 70px;
}

.process-section .section-title {
    color: var(--white);
}

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

.process-item {
    width: 25%;
    padding: 34px 30px 0;
    border-right: 1px solid var(--line-light);
}

.process-item:first-child { padding-left: 0; }
.process-item:last-child { border-right: 0; }

.process-item > span {
    display: block;
    margin-bottom: 70px;
    color: var(--lime);
    font-size: 13px;
    font-weight: 700;
}

.process-item h3 {
    margin-bottom: 14px;
    font-size: 23px;
}

.process-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.process-list--light {
    border-color: var(--line);
}

.process-list--light .process-item { border-color: var(--line); }
.process-list--light .process-item p { color: var(--text); }
.process-list--light .process-item > span { color: var(--purple); }

/* Testimonials */
.testimonials-layout {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.testimonials-layout > div:first-child {
    display: flex;
    flex-direction: column;
    width: calc(42% - 40px);
}

.testimonial-slider {
    position: relative;
    width: calc(58% - 40px);
    min-height: 470px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 48px;
    color: var(--white);
    background: var(--purple);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateX(25px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-card:nth-child(even) { background: var(--ink); }
.testimonial-card.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }

.quote-mark {
    display: block;
    height: 80px;
    color: var(--lime);
    font-family: Georgia, serif;
    font-size: 104px;
    line-height: 0.9;
}

.testimonial-card blockquote {
    margin-bottom: 35px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.03em;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    font-weight: 700;
}

.testimonial-card footer strong,
.testimonial-card footer span {
    display: block;
}

.testimonial-card footer strong { font-size: 14px; }
.testimonial-card footer div span { color: rgba(255, 255, 255, 0.58); font-size: 12px; }

.slider-controls {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.slider-controls button {
    width: 52px;
    height: 52px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease;
}

.slider-controls button:hover { color: var(--white); background: var(--ink); }

/* Global CTA */
.global-cta {
    padding-top: 0;
}

.global-cta__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 420px;
    padding: 70px;
    overflow: hidden;
    color: var(--white);
    background: var(--purple);
    border-radius: var(--radius-lg);
}

.global-cta__card > * { position: relative; z-index: 1; }
.global-cta__card > div:not(.orb) { max-width: 760px; }
.global-cta__card h2 { margin-bottom: 18px; font-size: 58px; }
.global-cta__card p:not(.eyebrow) { max-width: 600px; margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 18px; }
.global-cta__card .button { flex: 0 0 auto; }

/* Inner hero */
.page-hero {
    padding: 205px 0 115px;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1050px;
    margin-left: calc((100% - min(var(--container), calc(100% - 48px))) / 2);
}

.page-hero h1 {
    margin-bottom: 28px;
    font-size: 76px;
}

.page-hero__inner > p:last-child {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 20px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 700;
}

.back-link:hover { color: var(--lime); }

/* About */
.about-story__layout,
.two-column-heading,
.capabilities__layout,
.faq-layout {
    display: flex;
    align-items: flex-start;
    gap: 110px;
}

.about-story__sticky,
.two-column-heading > .section-heading,
.capabilities__layout > div,
.faq-layout > .section-heading {
    position: sticky;
    top: 130px;
    width: calc(44% - 55px);
}

.about-story__content,
.two-column-heading > :last-child,
.capability-list,
.faq-layout > :last-child {
    width: calc(56% - 55px);
}

.about-story__content > p {
    color: #3e4451;
    font-size: 22px;
    line-height: 1.7;
}

.about-story__stamp {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    padding: 12px 22px 12px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.about-story__stamp strong {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
}

.about-story__stamp span { color: var(--text); font-size: 13px; }

.values-section .section-heading,
.team-section .section-heading {
    margin-bottom: 60px;
}

.values-grid,
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.value-card {
    width: calc(25% - 15px);
    min-height: 310px;
    padding: 28px;
    background: var(--paper);
    border-radius: var(--radius-md);
}

.value-card > span {
    display: block;
    margin-bottom: 80px;
    color: var(--purple);
    font-size: 13px;
    font-weight: 700;
}

.value-card h3 { font-size: 22px; }
.value-card p { margin: 0; color: var(--text); font-size: 14px; }

.team-card {
    width: calc(33.333% - 14px);
}

.team-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 0.9 / 1;
    margin-bottom: 24px;
    overflow: hidden;
    background: var(--purple);
    border-radius: var(--radius-md);
}

.team-card__media--2 { background: var(--cyan); }
.team-card__media--3 { background: var(--lime); }

.team-card__media > span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 140px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(10px);
}

.team-card__media--2 > span,
.team-card__media--3 > span { color: var(--ink); }

.team-card__media img { height: 100%; object-fit: cover; }
.team-card__content > p { margin-bottom: 8px; color: var(--purple); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.team-card__content h3 { margin-bottom: 10px; }
.team-card__content > span { display: block; color: var(--text); font-size: 14px; }

.belief-section__inner { max-width: 1000px; }
.belief-section blockquote { margin: 0; font-size: 54px; font-weight: 600; line-height: 1.2; letter-spacing: -0.05em; }

/* Contact */
.contact-layout {
    display: flex;
    align-items: flex-start;
    gap: 90px;
}

.contact-form-wrap { width: calc(66% - 45px); }
.contact-sidebar { position: sticky; top: 120px; width: calc(34% - 45px); }
.contact-form-wrap > h2 { font-size: 44px; }
.contact-form-wrap > p:not(.eyebrow) { max-width: 650px; margin-bottom: 38px; color: var(--text); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-row > label { width: calc(50% - 9px); }

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contact-form label > span {
    font-size: 13px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.plugin-form input,
.plugin-form select,
.plugin-form textarea {
    width: 100%;
    min-height: 58px;
    padding: 14px 18px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea,
.plugin-form textarea { min-height: 160px; resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.plugin-form input:focus,
.plugin-form select:focus,
.plugin-form textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.11);
}

.contact-form .button { align-self: flex-start; margin-top: 8px; border: 0; }
.form-honeypot { position: absolute; left: -9999px; }

.form-notice {
    padding: 14px 18px;
    margin-bottom: 24px;
    border-radius: 12px;
    font-size: 14px;
}

.form-notice--success { color: #096435; background: #dff8ea; }
.form-notice--error { color: #8a2032; background: #fde6e9; }

.contact-sidebar__card {
    padding: 34px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius-md);
}

.contact-sidebar__card h3 { font-size: 30px; }
.contact-sidebar__card > p:last-child { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 14px; }

.contact-sidebar__details { padding: 30px 4px; }
.contact-sidebar__details > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-sidebar__details span { display: block; margin-bottom: 5px; color: #8c919d; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.contact-sidebar__details a,
.contact-sidebar__details p { margin: 0; font-size: 14px; font-weight: 600; }

.availability {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    color: #145c3a;
    background: #e0f7e8;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
}

/* Archives and service */
.archive-intro { max-width: 850px; margin-bottom: 65px; }
.archive-intro p { font-size: 30px; line-height: 1.45; letter-spacing: -0.03em; }
.services-grid--archive .service-card { width: calc(50% - 10px); }

.capability-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.capability-list li {
    width: 50%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
}

.service-hero {
    padding: 190px 0 110px;
}

.service-hero__layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 100px;
}

.service-hero__content { width: calc(68% - 50px); }
.service-hero__content h1 { margin-bottom: 25px; }
.service-hero__content > p { max-width: 730px; margin-bottom: 34px; color: rgba(255, 255, 255, 0.64); font-size: 19px; }

.service-hero__facts {
    width: calc(32% - 50px);
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
}

.service-hero__facts > div { padding: 22px 0; border-bottom: 1px solid var(--line-light); }
.service-hero__facts > div:last-child { border-bottom: 0; }
.service-hero__facts span { display: block; margin-bottom: 4px; color: rgba(255, 255, 255, 0.48); font-size: 11px; text-transform: uppercase; }
.service-hero__facts strong { font-size: 16px; }

.check-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 600;
}

.check-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    font-size: 12px;
}

.tools-layout {
    display: flex;
    align-items: center;
    gap: 100px;
}

.tools-layout > div { width: calc(50% - 50px); }
.tools-layout h2 { margin: 0; font-size: 44px; }

.tool-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-cloud span {
    padding: 13px 20px;
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line-light);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 24px 0; text-align: left; background: none; border: 0; cursor: pointer; }
.accordion__item button span { padding-right: 25px; font-size: 17px; font-weight: 700; }
.accordion__item button i { position: relative; display: block; width: 24px; height: 24px; flex: 0 0 auto; }
.accordion__item button i::before,
.accordion__item button i::after { position: absolute; top: 11px; left: 3px; width: 18px; height: 2px; content: ""; background: var(--ink); transition: transform 0.3s ease; }
.accordion__item button i::after { transform: rotate(90deg); }
.accordion__item.is-open button i::after { transform: rotate(0); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.accordion__panel > p { min-height: 0; margin: 0; overflow: hidden; color: var(--text); }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__panel > p { padding-bottom: 25px; }

/* Work archive and case studies */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
}

.filter-bar button {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.filter-bar button:hover,
.filter-bar button.is-active { color: var(--white); background: var(--ink); }
.project-card.is-filtered { display: none; }

.case-study__header { padding: 190px 0 120px; }
.case-study__header .container { position: relative; z-index: 1; }
.case-study__header h1 { max-width: 1000px; margin-bottom: 28px; }
.case-study__header .container > p:not(.eyebrow) { max-width: 740px; color: rgba(255, 255, 255, 0.64); font-size: 20px; }

.case-study__meta {
    display: flex;
    gap: 70px;
    padding-top: 45px;
    margin-top: 50px;
    border-top: 1px solid var(--line-light);
}

.case-study__meta div { min-width: 150px; }
.case-study__meta span { display: block; margin-bottom: 4px; color: rgba(255, 255, 255, 0.43); font-size: 11px; text-transform: uppercase; }
.case-study__meta strong { font-size: 15px; }

.case-study__hero { margin-top: -48px; position: relative; z-index: 2; }
.case-study__hero img { max-height: 760px; object-fit: cover; border: 12px solid var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.narrative-grid {
    display: flex;
    gap: 110px;
}

.narrative-grid > div { width: calc(50% - 55px); }
.narrative-grid h2 { font-size: 36px; }
.narrative-grid div > p:last-child { color: var(--text); font-size: 17px; }

.results-grid {
    display: flex;
    margin-top: 50px;
    border-top: 1px solid var(--line-light);
}

.results-grid > div { width: 33.333%; padding: 38px 30px 0; border-right: 1px solid var(--line-light); }
.results-grid > div:first-child { padding-left: 0; }
.results-grid > div:last-child { border-right: 0; }
.results-grid strong { display: block; margin-bottom: 8px; color: var(--lime); font-size: 62px; letter-spacing: -0.07em; }
.results-grid span { color: rgba(255, 255, 255, 0.55); font-size: 13px; }

.case-quote .container { max-width: 960px; }
.case-quote blockquote { margin: 0 0 35px; font-size: 44px; font-weight: 600; line-height: 1.35; letter-spacing: -0.04em; }
.case-quote p strong,
.case-quote p span { display: block; }
.case-quote p span { color: var(--text); font-size: 13px; }

/* Blog and content */
.post-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 24px;
}

.post-card { width: calc(33.333% - 16px); }
.post-card__media { display: block; margin-bottom: 24px; overflow: hidden; background: var(--soft); border-radius: var(--radius-md); }
.post-card__media img { aspect-ratio: 1.25 / 1; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__content > p { margin-bottom: 10px; color: #8a8f9a; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.post-card__content > p span { margin: 0 6px; }
.post-card__content h2 { margin-bottom: 13px; font-size: 25px; }
.post-card__content > div,
.post-card__content > p + p { color: var(--text); font-size: 14px; }

.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 65px; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: 50%; font-size: 13px; font-weight: 700; }
.page-numbers.current,
.page-numbers:hover { color: var(--white); background: var(--ink); }

.article__header { padding: 190px 0 120px; }
.article__header-inner { max-width: 920px; }
.article__header h1 { margin-bottom: 28px; }
.article__header-inner > p:last-child { max-width: 760px; margin: 0; color: rgba(255, 255, 255, 0.64); font-size: 20px; }
.article__featured { margin-top: -55px; position: relative; z-index: 2; }
.article__featured img { max-height: 680px; object-fit: cover; border: 10px solid var(--paper); border-radius: var(--radius-lg); }

.article__layout { display: flex; align-items: flex-start; gap: 90px; max-width: 1050px; }
.article__aside { position: sticky; top: 120px; width: 170px; flex: 0 0 auto; }
.article__aside > span { display: block; color: #979ba5; font-size: 11px; text-transform: uppercase; }
.article__aside > strong { display: block; margin: 5px 0 20px; font-size: 14px; }
.share-links { display: flex; gap: 7px; }
.share-links a,
.share-links button { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 700; cursor: pointer; }

.entry-content { max-width: 780px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin-top: 55px; font-size: 36px; }
.entry-content h3 { margin-top: 38px; }
.entry-content p,
.entry-content li { color: #3f4552; font-size: 17px; line-height: 1.85; }
.entry-content a { color: var(--purple); text-decoration: underline; }
.entry-content blockquote { padding: 28px 32px; margin: 40px 0; background: var(--soft); border-left: 4px solid var(--purple); border-radius: 0 16px 16px 0; }
.entry-content img { margin: 40px 0; border-radius: var(--radius-md); }
.standard-page .entry-content { margin: 0 auto; }

.not-found { min-height: 760px; padding: 210px 0 120px; }
.not-found .container { position: relative; z-index: 1; max-width: 800px; text-align: center; }
.not-found__code { margin-bottom: -30px; color: rgba(255, 255, 255, 0.05); font-size: 200px; font-weight: 700; line-height: 1; }
.not-found .eyebrow { justify-content: center; }
.not-found h1 { font-size: 62px; }
.not-found .container > p:not(.not-found__code, .eyebrow) { color: rgba(255, 255, 255, 0.6); }

/* Footer */
.site-footer {
    padding: 90px 0 28px;
}

.site-footer__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 75px;
}

.site-footer__intro { width: 31%; }
.site-footer__intro > p { max-width: 360px; margin-top: 26px; color: rgba(255, 255, 255, 0.5); font-size: 14px; }
.site-footer__column { width: 16%; }
.site-footer__contact { width: 23%; }

.footer-label {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu a,
.site-footer__contact > a,
.site-footer__contact address {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-style: normal;
    transition: color 0.2s ease;
}

.footer-menu a:hover,
.site-footer__contact > a:hover { color: var(--lime); }
.site-footer__contact > a { display: block; margin-bottom: 10px; }
.site-footer__contact .footer-email { color: var(--white); font-weight: 700; }
.site-footer__contact address { margin-top: 20px; color: rgba(255, 255, 255, 0.48); }

.social-links { display: flex; gap: 8px; margin-top: 28px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; color: var(--white); border: 1px solid var(--line-light); border-radius: 50%; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.social-links a:hover { color: var(--ink); background: var(--lime); border-color: var(--lime); }

.site-footer__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--line-light);
}

.site-footer__bottom p { margin: 0; color: rgba(255, 255, 255, 0.37); font-size: 11px; }
.site-footer__bottom span { color: var(--lime); }

@media (max-width: 1100px) {
    h1,
    .page-hero h1 { font-size: 62px; }
    h2 { font-size: 46px; }
    .primary-nav__menu { gap: 22px; }
    .site-header__cta { display: none; }
    .home-hero__inner { gap: 45px; }
    .service-card { width: calc(50% - 10px); }
    .value-card { width: calc(50% - 10px); }
    .value-card > span { margin-bottom: 45px; }
    .post-card { width: calc(50% - 12px); }
}

@media (max-width: 900px) {
    .section-pad { padding-top: 90px; padding-bottom: 90px; }
    .site-header__inner { min-height: 76px; }
    .menu-toggle {
        position: relative;
        z-index: 1002;
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 46px;
        height: 46px;
        padding: 14px 11px;
        margin-left: auto;
        background: transparent;
        border: 1px solid var(--line-light);
        border-radius: 50%;
    }
    .is-scrolled .menu-toggle { border-color: var(--line); }
    .menu-toggle > span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; background: currentColor; transition: transform 0.3s ease; }
    .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
    .primary-nav {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 110px 24px 40px;
        color: var(--white);
        background: var(--ink);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }
    .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .primary-nav__menu { flex-direction: column; align-items: flex-start; gap: 14px; }
    .primary-nav__menu a { font-size: 34px; font-weight: 600; letter-spacing: -0.05em; }
    .primary-nav__mobile-cta { display: block; margin-top: 40px; }
    .home-hero { padding-top: 140px; }
    .home-hero__inner { flex-direction: column; align-items: stretch; min-height: auto; padding-bottom: 85px; }
    .home-hero__content,
    .home-hero__visual { width: 100%; }
    .home-hero__visual { max-width: 650px; margin: 15px auto 0; }
    .floating-card--top { left: 15px; }
    .floating-card--bottom { right: 15px; }
    .client-strip__inner { align-items: flex-start; flex-direction: column; gap: 25px; }
    .client-strip__inner > p,
    .client-logos { width: 100%; }
    .client-logos { flex-wrap: wrap; justify-content: flex-start; }
    .stats-grid { flex-wrap: wrap; }
    .stat { width: 50%; padding: 25px; border-bottom: 1px solid var(--line-light); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(3) { padding-left: 0; border-bottom: 0; }
    .stat:nth-child(4) { border-bottom: 0; }
    .process-list { flex-wrap: wrap; }
    .process-item { width: 50%; padding: 30px; border-bottom: 1px solid var(--line-light); }
    .process-item:nth-child(odd) { padding-left: 0; }
    .process-item:nth-child(even) { border-right: 0; }
    .process-item > span { margin-bottom: 38px; }
    .testimonials-layout { flex-direction: column; gap: 50px; }
    .testimonials-layout > div:first-child,
    .testimonial-slider { width: 100%; }
    .slider-controls { margin-top: 25px; }
    .global-cta__card { flex-direction: column; align-items: flex-start; min-height: 390px; padding: 55px; }
    .page-hero { padding: 170px 0 90px; }
    .about-story__layout,
    .two-column-heading,
    .capabilities__layout,
    .faq-layout,
    .contact-layout,
    .tools-layout { flex-direction: column; gap: 50px; }
    .about-story__sticky,
    .two-column-heading > .section-heading,
    .capabilities__layout > div,
    .faq-layout > .section-heading,
    .about-story__content,
    .two-column-heading > :last-child,
    .capability-list,
    .faq-layout > :last-child,
    .contact-form-wrap,
    .contact-sidebar,
    .tools-layout > div { position: static; width: 100%; }
    .contact-sidebar { display: flex; flex-wrap: wrap; gap: 20px; }
    .contact-sidebar__card { width: calc(55% - 10px); }
    .contact-sidebar__details { width: calc(45% - 10px); padding: 0; }
    .availability { width: 100%; }
    .service-hero__layout { flex-direction: column; align-items: stretch; gap: 60px; }
    .service-hero__content,
    .service-hero__facts { width: 100%; }
    .narrative-grid { gap: 55px; }
    .site-footer__top { flex-wrap: wrap; }
    .site-footer__intro { width: 100%; }
    .site-footer__column { width: calc(33.333% - 34px); }
}

@media (max-width: 680px) {
    .container { width: calc(100% - 32px); }
    h1,
    .page-hero h1 { font-size: 44px; }
    h2,
    .global-cta__card h2 { font-size: 38px; }
    h3 { font-size: 23px; }
    .section-pad { padding-top: 72px; padding-bottom: 72px; }
    .brand__mark { width: 34px; height: 34px; }
    .brand__mark span { left: 8px; }
    .brand__mark span:nth-child(1) { top: 8px; }
    .brand__mark span:nth-child(2) { top: 15px; }
    .brand__mark span:nth-child(3) { top: 23px; }
    .brand__text { font-size: 19px; }
    .home-hero { padding-top: 120px; }
    .home-hero__inner { gap: 55px; }
    .home-hero__copy { font-size: 17px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .hero-visual__frame { transform: none; }
    .floating-card--top { top: 20px; }
    .floating-card--bottom { bottom: 20px; }
    .client-logos { gap: 18px 28px; }
    .split-heading { align-items: flex-start; flex-direction: column; margin-bottom: 42px; }
    .service-card,
    .services-grid--archive .service-card,
    .project-card,
    .team-card,
    .post-card { width: 100%; }
    .service-card { min-height: 340px; padding: 26px; }
    .service-card__top { margin-bottom: 42px; }
    .projects-grid { gap: 50px; }
    .project-card__content h3 { font-size: 26px; }
    .stat { padding: 22px 12px; }
    .stat p { font-size: 45px; }
    .process-item { width: 100%; padding: 28px 0; border-right: 0; }
    .testimonial-slider { min-height: 540px; }
    .testimonial-card { padding: 34px 28px; }
    .testimonial-card blockquote { font-size: 22px; }
    .global-cta__card { gap: 40px; min-height: 440px; padding: 42px 26px; border-radius: 26px; }
    .page-hero { padding: 145px 0 75px; }
    .page-hero__inner { margin-left: 0; }
    .page-hero__inner > p:last-child { font-size: 17px; }
    .about-story__content > p { font-size: 18px; }
    .value-card { width: 100%; min-height: 260px; }
    .belief-section blockquote { font-size: 37px; }
    .form-row { flex-direction: column; }
    .form-row > label { width: 100%; }
    .contact-sidebar__card,
    .contact-sidebar__details { width: 100%; }
    .archive-intro p { font-size: 23px; }
    .capability-list li { width: 100%; }
    .service-hero { padding: 150px 0 80px; }
    .service-hero__content h1 { font-size: 44px; }
    .tools-layout h2 { font-size: 37px; }
    .narrative-grid { flex-direction: column; }
    .narrative-grid > div { width: 100%; }
    .case-study__header { padding: 150px 0 90px; }
    .case-study__header h1 { font-size: 44px; }
    .case-study__meta { flex-wrap: wrap; gap: 28px; }
    .case-study__meta div { width: calc(50% - 14px); min-width: 0; }
    .case-study__hero { margin-top: -30px; }
    .case-study__hero img { border-width: 6px; border-radius: 22px; }
    .results-grid { flex-direction: column; }
    .results-grid > div { width: 100%; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .case-quote blockquote { font-size: 31px; }
    .article__header { padding: 150px 0 90px; }
    .article__header h1 { font-size: 43px; }
    .article__layout { flex-direction: column; gap: 45px; }
    .article__aside { position: static; width: 100%; }
    .entry-content h2 { font-size: 31px; }
    .not-found__code { font-size: 130px; }
    .not-found h1 { font-size: 43px; }
    .site-footer__column,
    .site-footer__contact { width: calc(50% - 25px); }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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