:root {
    --ink: #111111;
    --paper: #f3f0e9;
    --paper-deep: #e9e4da;
    --purple: #7656ff;
    --purple-dark: #5f3ff0;
    --lime: #c8f45b;
    --line: rgba(17, 17, 17, 0.14);
    --muted: #706d67;
    --white: #ffffff;
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Vazirmatn", sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: var(--white);
    background: var(--purple);
}

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

button,
input,
textarea {
    font: inherit;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    opacity: 0.055;
    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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.section-shell,
.site-header {
    width: min(1400px, calc(100% - 96px));
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 50;
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.brand {
    direction: ltr;
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.brand-name {
    font: 800 23px/1 "Manrope", sans-serif;
    letter-spacing: 0.08em;
}

.brand-mark {
    width: 28px;
    height: 28px;
    position: relative;
    display: inline-block;
    transform: rotate(-10deg);
}

.brand-mark i {
    position: absolute;
    width: 8px;
    border-radius: 5px;
    background: var(--purple);
    transform-origin: bottom center;
}

.brand-mark i:nth-child(1) {
    height: 17px;
    left: 1px;
    bottom: 2px;
    transform: rotate(30deg);
}

.brand-mark i:nth-child(2) {
    height: 25px;
    left: 10px;
    bottom: 1px;
    transform: rotate(-2deg);
}

.brand-mark i:nth-child(3) {
    height: 15px;
    right: 1px;
    bottom: 4px;
    transform: rotate(-35deg);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 42px;
    font-size: 14px;
    font-weight: 500;
}

.desktop-nav a {
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    left: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--purple);
    transition: left 250ms ease;
}

.desktop-nav a:hover::after {
    left: 0;
}

.header-cta {
    min-width: 143px;
    padding: 12px 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: var(--white);
    background: var(--ink);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: background 200ms ease, transform 200ms ease;
}

.header-cta:hover {
    background: var(--purple);
    transform: translateY(-2px);
}

.header-cta svg,
.text-link svg,
.service-card > a svg,
.button svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    margin: 6px auto;
    display: block;
    background: var(--ink);
    transition: transform 250ms ease;
}

.mobile-menu {
    display: none;
}

.hero {
    min-height: calc(100vh - 94px);
    padding-block: 90px 70px;
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.75fr;
    align-items: center;
    gap: 7vw;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.eyebrow span {
    width: 29px;
    height: 2px;
    background: var(--purple);
}

.hero h1 {
    max-width: 790px;
    margin: 0;
    font-size: clamp(48px, 5.8vw, 88px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.055em;
}

.hero h1 em,
.section-heading h2 em,
.contact h2 em {
    color: var(--purple);
    font-style: normal;
}

.highlight-row {
    width: max-content;
    position: relative;
    display: block;
}

.scribble {
    position: absolute;
    right: 0;
    bottom: -13px;
    width: 100%;
    height: 27px;
    overflow: visible;
}

.scribble path {
    fill: none;
    stroke: var(--purple);
    stroke-width: 2.5;
    stroke-linecap: round;
}

.hero-description {
    max-width: 600px;
    margin: 48px 0 0;
    color: var(--muted);
    font-size: 17px;
    font-weight: 400;
    line-height: 2;
}

.hero-description strong {
    color: var(--ink);
    font-weight: 650;
}

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

.button {
    height: 58px;
    padding: 0 9px 0 23px;
    display: inline-flex;
    align-items: center;
    gap: 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 650;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

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

.button-primary:hover {
    background: var(--purple-dark);
}

.button-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.text-link svg {
    transition: transform 200ms ease;
}

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

.hero-visual {
    position: relative;
    z-index: 2;
    direction: ltr;
}

.visual-card {
    width: min(100%, 470px);
    aspect-ratio: 0.82;
    margin-inline: auto;
    padding: 26px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border-radius: 30px;
    box-shadow: 28px 34px 80px rgba(17, 17, 17, 0.2);
    transform: rotate(3deg);
    transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.visual-card:hover {
    transform: rotate(0);
}

.visual-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -100px;
    background: var(--purple);
    filter: blur(80px);
    opacity: 0.55;
}

.card-top,
.card-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 700 10px/1 "Manrope", sans-serif;
    letter-spacing: 0.12em;
}

.live-dot {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--lime);
}

.live-dot::before {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.visual-center {
    height: calc(100% - 105px);
    position: relative;
    display: grid;
    place-items: center;
}

.sphere {
    width: 70%;
    aspect-ratio: 1;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background:
        radial-gradient(circle at 62% 30%, rgba(255,255,255,.95) 0 2%, transparent 3%),
        radial-gradient(circle at 38% 38%, var(--purple) 0, #3f2fb3 28%, #151515 67%);
    box-shadow: inset -26px -24px 40px rgba(0,0,0,.6), 0 0 80px rgba(118,86,255,.35);
}

.sphere::after,
.sphere::before {
    content: "";
    position: absolute;
    inset: 10%;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 50%;
    transform: rotate(62deg) scaleX(.38);
}

.sphere::after {
    transform: rotate(-62deg) scaleX(.38);
}

.sphere-grid {
    position: absolute;
    inset: 25% 4%;
    border-top: 1px solid rgba(255,255,255,.22);
    border-bottom: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
}

.sphere-ring {
    position: absolute;
    inset: -15%;
    border: 1px solid rgba(200, 244, 91, 0.7);
    border-radius: 50%;
    transform: rotate(-28deg) scaleY(.24);
}

.ring-b {
    inset: -28%;
    border-color: rgba(255, 255, 255, 0.25);
    transform: rotate(32deg) scaleY(.2);
}

.sphere-glow {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 0;
    top: 42%;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--lime);
}

.floating-tag {
    padding: 8px 13px;
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(20,20,20,.72);
    backdrop-filter: blur(8px);
    font-size: 11px;
}

.tag-strategy { top: 24%; left: 0; }
.tag-creative { top: 50%; right: -2%; color: var(--ink); background: var(--lime); border-color: var(--lime); }
.tag-data { bottom: 18%; left: 10%; }

.card-bottom {
    align-items: end;
    letter-spacing: normal;
    font-family: "Vazirmatn", sans-serif;
}

.card-bottom > div:first-child {
    display: flex;
    flex-direction: column;
}

.card-bottom strong {
    font: 800 28px/1 "Manrope", sans-serif;
}

.card-bottom span {
    margin-top: 7px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
}

.mini-chart {
    width: 95px;
    height: 50px;
    display: flex;
    align-items: end;
    gap: 5px;
}

.mini-chart i {
    flex: 1;
    background: var(--purple);
    border-radius: 3px 3px 0 0;
}

.mini-chart i:last-child {
    background: var(--lime);
}

.visual-caption {
    position: absolute;
    right: -40px;
    bottom: 100px;
    color: var(--muted);
    font: 700 9px/1 "Manrope", sans-serif;
    letter-spacing: .3em;
    transform: rotate(90deg);
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(17,17,17,.1);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 170px;
    height: 170px;
    left: 42%;
    top: 8%;
}

.orbit-two {
    width: 470px;
    height: 470px;
    left: 56%;
    bottom: -200px;
}

.hero-spark {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--purple);
    transform: rotate(45deg);
}

.spark-one { left: 46%; top: 17%; }
.spark-two { left: 4%; bottom: 19%; background: var(--lime); }

.hero-scroll {
    position: absolute;
    bottom: 26px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 10px;
    transform: rotate(90deg) translateX(100%);
    transform-origin: bottom right;
}

.hero-scroll i {
    width: 45px;
    height: 1px;
    background: currentColor;
}

.trusted {
    padding: 34px max(48px, calc((100% - 1400px) / 2));
    display: flex;
    align-items: center;
    gap: 6vw;
    border-block: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
}

.logo-strip {
    flex: 1;
    direction: ltr;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-strip b {
    color: #817e78;
    font: 700 clamp(13px, 1.4vw, 20px)/1 "Manrope", sans-serif;
    letter-spacing: .08em;
    opacity: .72;
}

.services,
.process {
    padding-block: 145px;
}

.section-heading {
    margin-bottom: 76px;
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    gap: 80px;
}

.section-index {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 650;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: 1.35;
    letter-spacing: -.045em;
}

.section-heading p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}

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

.service-card {
    min-height: 420px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color 300ms ease, background 300ms ease, transform 300ms ease;
}

.service-card:hover,
.service-featured {
    color: var(--white);
    background: var(--purple);
    transform: translateY(-8px);
}

.service-number {
    color: var(--muted);
    font: 700 10px/1 "Manrope", sans-serif;
}

.service-card:hover .service-number,
.service-featured .service-number {
    color: rgba(255,255,255,.6);
}

.service-icon {
    width: 55px;
    height: 55px;
    margin-top: 55px;
}

.service-icon svg {
    width: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
}

.service-card h3 {
    margin: 28px 0 12px;
    font-size: 20px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

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

.service-tags {
    margin-top: auto;
    display: flex;
    gap: 6px;
}

.service-tags span {
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 9px;
}

.service-card:hover .service-tags span,
.service-featured .service-tags span {
    color: rgba(255,255,255,.75);
    border-color: rgba(255,255,255,.22);
}

.service-card > a {
    width: 38px;
    height: 38px;
    position: absolute;
    left: 28px;
    top: 28px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.service-card:hover > a,
.service-featured > a {
    color: var(--ink);
    border-color: var(--lime);
    background: var(--lime);
}

.work {
    width: 100%;
    max-width: none;
    padding: 140px max(48px, calc((100% - 1400px) / 2));
    color: var(--white);
    background: var(--ink);
}

.section-heading-light .section-index {
    color: var(--lime);
}

.section-heading-light h2 em {
    color: var(--lime);
}

.text-link-light {
    color: var(--white);
    border-color: var(--white);
    justify-self: end;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 30px;
}

.project {
    direction: rtl;
}

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

.project-art {
    height: 520px;
    position: relative;
    overflow: hidden;
    transition: transform 400ms ease;
}

.project:hover .project-art {
    transform: scale(.985);
}

.project-large .project-art {
    height: 620px;
}

.project-art-one {
    display: grid;
    place-items: center;
    background: #c8f45b;
}

.project-word {
    position: relative;
    z-index: 2;
    color: #121212;
    font: 800 clamp(90px, 17vw, 250px)/1 "Manrope", sans-serif;
    letter-spacing: -.08em;
    mix-blend-mode: overlay;
}

.project-shape {
    position: absolute;
    border: 2px solid var(--ink);
    border-radius: 50%;
}

.shape-one {
    width: 42%;
    aspect-ratio: 1;
    left: 12%;
    top: -16%;
    background: var(--purple);
    box-shadow: 40px 40px 0 #ff715b;
}

.shape-two {
    width: 33%;
    aspect-ratio: 1;
    right: 5%;
    bottom: -20%;
    background: #ff715b;
}

.project-art-two {
    display: grid;
    place-items: center;
    background: #7357fb;
}

.phone-mockup {
    width: 220px;
    height: 410px;
    padding: 45px 25px;
    position: relative;
    color: var(--ink);
    background: #f3f0e9;
    border: 8px solid #171717;
    border-radius: 35px;
    box-shadow: 20px 30px 45px rgba(0,0,0,.25);
    transform: rotate(9deg);
}

.phone-mockup::before {
    content: "";
    width: 70px;
    height: 15px;
    position: absolute;
    top: 7px;
    left: 50%;
    background: #171717;
    border-radius: 0 0 12px 12px;
    transform: translateX(-50%);
}

.phone-mockup span {
    font: 800 25px/1 "Manrope", sans-serif;
}

.phone-mockup i {
    height: 70px;
    margin-top: 20px;
    display: block;
    background: var(--lime);
    border-radius: 8px;
}

.phone-mockup i:nth-of-type(2) { background: #ff715b; }
.phone-mockup i:nth-of-type(3) { height: 30px; background: #d8d4cc; }

.project-sticker {
    width: 115px;
    height: 115px;
    position: absolute;
    right: 9%;
    top: 11%;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    font: 800 15px/1.2 "Manrope", sans-serif;
    text-align: center;
    transform: rotate(-12deg);
}

.project-art-three {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3f0e9;
    background: #242424;
}

.axon-a {
    position: relative;
    z-index: 2;
    color: var(--purple);
    font: 800 250px/1 "Manrope", sans-serif;
}

.axon-x {
    position: relative;
    z-index: 2;
    font: 800 70px/1 "Manrope", sans-serif;
    letter-spacing: -.07em;
}

.project-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0 69px, rgba(255,255,255,.06) 70px);
}

.project-info {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.project-info h3 {
    margin: 0 0 8px;
    font-size: 19px;
}

.project-info p,
.project-info > span {
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: 11px;
}

.about {
    padding-block: 155px 125px;
}

.about-main {
    display: grid;
    grid-template-columns: .35fr 1.65fr;
    gap: 40px;
}

.about-statement {
    max-width: 1030px;
    margin: 0;
    font-size: clamp(31px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -.04em;
}

.about-statement em {
    color: var(--purple);
    font-style: normal;
}

.about-statement strong {
    position: relative;
    font-weight: 800;
}

.stats {
    margin-top: 110px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.stat {
    min-height: 190px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat strong {
    color: var(--purple);
    font: 700 clamp(45px, 5vw, 72px)/1 "Manrope", sans-serif;
}

.stat strong::after {
    content: "+";
    font-size: .45em;
    vertical-align: top;
}

.stat span {
    color: var(--muted);
    font-size: 12px;
}

.process {
    padding-top: 50px;
}

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

.process-item {
    padding: 31px 0;
    display: grid;
    grid-template-columns: .2fr .7fr 1.1fr;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid var(--line);
    transition: padding 250ms ease, background 250ms ease;
}

.process-item:hover {
    padding-inline: 25px;
    background: var(--paper-deep);
}

.process-item > span {
    color: var(--purple);
    font: 700 11px/1 "Manrope", sans-serif;
}

.process-item h3 {
    margin: 0;
    font-size: 22px;
}

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

.contact {
    width: 100%;
    max-width: none;
    min-height: 620px;
    padding: 110px max(48px, calc((100% - 1400px) / 2));
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: center;
    color: var(--white);
    background: var(--purple);
}

.contact-copy {
    position: relative;
    z-index: 3;
}

.contact-copy > span {
    color: var(--lime);
    font-size: 13px;
    font-weight: 600;
}

.contact h2 {
    margin: 25px 0 42px;
    font-size: clamp(44px, 5.5vw, 82px);
    line-height: 1.27;
    letter-spacing: -.055em;
}

.contact h2 em {
    color: var(--lime);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
    direction: ltr;
    font-family: "Manrope", sans-serif;
}

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

.button-dark:hover .button-icon {
    color: var(--white);
    background: var(--purple);
}

.contact-orbit {
    height: 100%;
    position: relative;
    display: grid;
    place-items: center;
}

.contact-circle {
    width: 360px;
    height: 360px;
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.contact-circle::before,
.contact-circle::after {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(200,244,91,.65);
    border-radius: 50%;
    transform: scaleX(.3) rotate(40deg);
}

.contact-circle::after {
    transform: scaleX(.3) rotate(-40deg);
}

.contact-circle span {
    font: 800 45px/1 "Manrope", sans-serif;
    letter-spacing: -.05em;
    text-align: center;
}

.contact-orbit > i {
    width: 8px;
    height: 8px;
    position: absolute;
    z-index: 3;
    background: var(--lime);
    border-radius: 50%;
}

.contact-orbit > i:nth-of-type(1) { top: 18%; left: 14%; }
.contact-orbit > i:nth-of-type(2) { right: 4%; bottom: 25%; width: 14px; height: 14px; }
.contact-orbit > i:nth-of-type(3) { right: 17%; top: 13%; background: var(--white); }

.footer {
    padding: 75px max(48px, calc((100% - 1400px) / 2)) 30px;
    color: var(--white);
    background: var(--ink);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-light .brand-mark i {
    background: var(--lime);
}

.footer-links {
    display: flex;
    gap: 30px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
}

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

.footer-bottom {
    margin-top: 70px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.4);
    font: 600 9px/1 "Manrope", "Vazirmatn", sans-serif;
    letter-spacing: .05em;
}

.back-to-top {
    padding: 0;
    color: inherit;
    border: 0;
    background: none;
    cursor: pointer;
}

.back-to-top:hover {
    color: var(--white);
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1100px) {
    .section-shell,
    .site-header {
        width: min(100% - 56px, 1400px);
    }

    .hero {
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(46px, 6vw, 68px);
    }

    .visual-card {
        padding: 21px;
    }

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

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

    .contact-circle {
        width: 290px;
        height: 290px;
    }
}

@media (max-width: 800px) {
    .section-shell,
    .site-header {
        width: min(100% - 36px, 1400px);
    }

    .site-header {
        min-height: 76px;
    }

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

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 61;
    }

    .menu-open .menu-toggle span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-open .menu-toggle span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 40;
        padding: 125px 24px 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: var(--white);
        background: var(--ink);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: opacity 250ms ease, visibility 250ms ease, transform 250ms ease;
    }

    .menu-open .site-header {
        color: var(--white);
        border-color: rgba(255,255,255,.15);
    }

    .menu-open .brand-mark i,
    .menu-open .menu-toggle span {
        background: var(--lime);
    }

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

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu nav a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
        font-size: 31px;
        font-weight: 700;
    }

    .mobile-menu-footer {
        display: flex;
        justify-content: space-between;
        color: rgba(255,255,255,.5);
        font-size: 10px;
    }

    .hero {
        min-height: auto;
        padding-block: 70px 90px;
        grid-template-columns: 1fr;
    }

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

    .hero-description {
        margin-top: 38px;
    }

    .hero-visual {
        width: min(100%, 500px);
        margin: 25px auto 0;
    }

    .hero-scroll {
        display: none;
    }

    .visual-caption {
        right: -34px;
    }

    .trusted {
        padding-inline: 18px;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
    }

    .logo-strip {
        width: 780px;
        justify-content: flex-start;
        gap: 55px;
        animation: marquee 14s linear infinite;
    }

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

    .services,
    .process,
    .about {
        padding-block: 90px;
    }

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

    .section-heading h2 {
        font-size: clamp(35px, 9vw, 54px);
    }

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

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

    .work {
        padding: 90px 18px;
    }

    .text-link-light {
        justify-self: start;
    }

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

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

    .project-art,
    .project-large .project-art {
        height: 430px;
    }

    .project-word {
        font-size: 25vw;
    }

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

    .about-statement {
        font-size: clamp(30px, 7vw, 45px);
    }

    .stats {
        margin-top: 70px;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        min-height: 160px;
        padding: 27px;
    }

    .process-item {
        grid-template-columns: .2fr 1fr;
    }

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

    .contact {
        min-height: 720px;
        padding: 85px 18px;
        grid-template-columns: 1fr;
    }

    .contact-orbit {
        height: 310px;
    }

    .contact-circle {
        width: 250px;
        height: 250px;
    }

    .footer {
        padding-inline: 18px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 20px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: 43px;
        line-height: 1.36;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 23px;
    }

    .visual-card {
        min-height: 440px;
        aspect-ratio: auto;
        border-radius: 22px;
    }

    .sphere {
        width: 72%;
    }

    .service-card {
        padding: 26px;
    }

    .project-art,
    .project-large .project-art {
        height: 340px;
    }

    .phone-mockup {
        width: 165px;
        height: 310px;
    }

    .project-sticker {
        width: 83px;
        height: 83px;
        font-size: 10px;
    }

    .axon-a {
        font-size: 170px;
    }

    .axon-x {
        font-size: 45px;
    }

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

    .stat {
        min-height: 135px;
        padding: 20px;
    }

    .process-item {
        padding: 25px 0;
        grid-template-columns: 35px 1fr;
    }

    .process-item h3 {
        font-size: 18px;
    }

    .contact h2 {
        font-size: 42px;
    }

    .button-dark {
        max-width: 100%;
        font-size: 12px;
    }

    .footer-top {
        align-items: flex-start;
        gap: 35px;
        flex-direction: column;
    }

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

@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;
    }
}
