/* Arvion — shared design system. All pages use this single stylesheet. */
@font-face {
    font-family: Cal Sans;
    src: url('./fonts/fdN99sWUv3gWqXxqqSBevloE4LZx.woff2') format('woff2');
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('./fonts/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2') format('woff2');
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('./fonts/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2') format('woff2');
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('./fonts/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2') format('woff2');
    font-weight: 600;
    font-display: swap
}

:root {
    --bg: #dcdcdc;
    --surface: #f0f0f0;
    --ink: #131313;
    --muted: #5c5c5c;
    --accent: #ff4d00;
    --radius: 32px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --content: 1128px;
    --section-gap: 144px;
    --display-size: clamp(88px, 14.16vw, 204px);
    --display-line: 1;
    --display-spacing: 0px;
    --display-gap: -.16em;
    --shadow: 0 24px 48px -24px #0004, 0 8px 12px -8px #0003
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 36px;
    -webkit-text-size-adjust: 100%
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

body,
button,
input,
textarea,
select {
    font-synthesis: none
}

/* Arvion cinematic preloader — isolated to the Home page. */
.arvion-preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #080808;
    color: #fff;
    contain: strict;
    isolation: isolate;
    transition: opacity .34s .74s ease, visibility 0s linear 1.08s;
    will-change: opacity
}

.arvion-flow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.arvion-flow::before,
.arvion-flow::after {
    content: "";
    position: absolute;
    left: -35%;
    width: 170%;
    height: 18%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(216, 90, 23, .15), rgba(201, 79, 22, .035) 46%, transparent 72%);
    filter: blur(18px);
    opacity: 0;
    transform: translate3d(-34%, 0, 0) skewX(-14deg);
    animation: arvion-light-pass 2.1s .18s var(--ease) forwards
}

.arvion-flow::before { top: 36% }

.arvion-flow::after {
    top: 51%;
    animation-delay: .48s;
    animation-direction: reverse
}

.preloader-brand {
    position: relative;
    z-index: 2;
    width: clamp(230px, 31vw, 470px);
    aspect-ratio: 823 / 287;
    transform: translateZ(0) scale(1);
    filter: drop-shadow(0 14px 38px rgba(0, 0, 0, .52));
    will-change: transform, opacity
}

.brand-ghost,
.brand-slices {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.brand-ghost {
    object-fit: contain;
    opacity: .12;
    filter: saturate(.72) brightness(.56);
    animation: arvion-ghost 1.8s ease-out both
}

.brand-slices {
    overflow: hidden;
}

.brand-slice {
    --direction: 1;
    position: absolute;
    left: 0;
    top: calc(var(--row) * 14.285714%);
    width: 100%;
    height: 14.285715%;
    overflow: hidden;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(calc(var(--direction) * 34px), 0, 0);
    animation: arvion-slice .74s var(--ease) forwards
}

.brand-slice:nth-child(even) {
    --direction: -1;
    clip-path: inset(0 0 0 100%)
}

.brand-slice:nth-child(1) { animation-delay: .2s }
.brand-slice:nth-child(2) { animation-delay: .34s }
.brand-slice:nth-child(3) { animation-delay: .5s }
.brand-slice:nth-child(4) { animation-delay: .64s }
.brand-slice:nth-child(5) { animation-delay: .79s }
.brand-slice:nth-child(6) { animation-delay: .94s }
.brand-slice:nth-child(7) { animation-delay: 1.08s }

.brand-slice img {
    position: absolute;
    top: calc(var(--row) * -100%);
    left: 0;
    width: 100%;
    height: auto;
    max-width: none
}

.arvion-preloader.is-exiting {
    opacity: 0;
    visibility: hidden
}

.arvion-preloader.is-exiting .preloader-brand {
    opacity: .08;
    transform: scale(7.4);
    filter: brightness(.48) saturate(.7);
    transition: transform 1.08s cubic-bezier(.72, 0, .28, 1), opacity .58s .48s ease, filter .9s ease
}

.arvion-preloader.is-exiting .arvion-flow {
    opacity: 0;
    transform: scale(1.25);
    transition: opacity .6s ease, transform 1.08s var(--ease)
}

.arvion-loading .site-header,
.arvion-loading #main {
    visibility: hidden
}

.arvion-ready .site-header,
.arvion-ready #main {
    visibility: visible
}

.arvion-ready .site-header {
    animation: arvion-page-in .8s .12s var(--ease) both
}

.arvion-ready .hero-home .hero-content {
    animation: arvion-page-in .9s .05s var(--ease) both
}

@keyframes arvion-light-pass {
    0% { opacity: 0; transform: translate3d(-34%, 0, 0) skewX(-14deg) }
    35% { opacity: 1 }
    100% { opacity: .3; transform: translate3d(34%, 0, 0) skewX(14deg) }
}

@keyframes arvion-ghost {
    0% { opacity: 0; transform: scale(.97) }
    22%, 100% { opacity: .12; transform: scale(1) }
}

@keyframes arvion-slice {
    0% { opacity: 0; transform: translate3d(calc(var(--direction) * 34px), 0, 0) }
    18% { opacity: 1 }
    100% { opacity: 1; transform: translate3d(0, 0, 0); clip-path: inset(0) }
}

@keyframes arvion-page-in {
    from { opacity: 0; transform: translateY(18px) scale(.992) }
    to { opacity: 1; transform: translateY(0) scale(1) }
}

@media (orientation: portrait) {
    .preloader-brand { width: clamp(210px, 61vw, 330px) }
    .arvion-flow::before, .arvion-flow::after { left: -70%; width: 240% }
}

@media (prefers-reduced-motion: reduce) {
    .arvion-preloader { transition-duration: .28s; transition-delay: 0s }
    .arvion-flow { display: none }
    .brand-ghost { opacity: 0 }
    .brand-slice { animation: none; opacity: 1; transform: none; clip-path: inset(0) }
    .arvion-preloader.is-exiting .preloader-brand { transform: scale(1.04); transition-duration: .28s }
    .arvion-ready .site-header, .arvion-ready .hero-home .hero-content { animation: none }
}

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

img {
    height: auto
}

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

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

button {
    cursor: pointer
}

button:disabled {
    cursor: wait
}

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

h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0
}

h1,
h2,
h3,
h4 {
    font-family: Cal Sans, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.1
}

h2 {
    font-size: 64px;
    line-height: 68px
}

h3 {
    font-size: 32px;
    line-height: 1.15
}

p {
    color: var(--muted)
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 5px;
    border-radius: 4px
}

button:focus-visible {
    outline-offset: 4px
}

[hidden] {
    display: none !important
}

.sr-only,
.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 200;
    background: var(--ink);
    color: #fff;
    padding: 12px 20px;
    transform: translateY(-200%)
}

.skip-link:focus {
    transform: none
}

.muted {
    color: var(--muted)
}

.accent {
    color: var(--accent)
}

.section {
    width: calc(100% - 80px);
    max-width: var(--content);
    margin: var(--section-gap) auto
}

.section-wide {
    width: calc(100% - 32px);
    max-width: 1888px;
    margin: var(--section-gap) auto
}

.section-title,
.section-intro {
    text-align: center;
    margin-bottom: 64px
}

.section-intro p {
    margin-top: 16px
}

.eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 24px
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 44px;
    padding: 12px 20px;
    background: #353535;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    box-shadow: 0 12px 12px -6px #1a1a1a1f, inset 0 1px 2px #ffffff30;
    border: 0;
    transition: background .2s, box-shadow .2s, transform .2s var(--ease);
    isolation: isolate;
    overflow: hidden;
    white-space: nowrap
}

.button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    transition: transform .3s var(--ease)
}

.button:hover {
    background: #242424;
    box-shadow: var(--shadow);
    transform: translateY(-1px)
}

.button:hover svg {
    transform: translateX(3px)
}

.button:active {
    transform: translateY(0)
}

/* Shared header, with the reference's availability notch. */
.site-header {
    background: var(--surface);
    position: relative;
    z-index: 30
}

.availability {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 342px;
    height: 36px;
    padding: 0;
    background: url("icons/availability-notch.svg") center/100% 100% no-repeat;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -.14px;
    white-space: nowrap
}

.availability::before,
.availability::after {
    content: none
}

.availability span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #61c554;
    box-shadow: 0 0 14px #61c55440
}

.header-inner {
    position: relative;
    width: calc(100% - 80px);
    max-width: var(--content);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 132px;
    padding-top: 36px
}

.logo {
    width: 117px;
    height: 48px;
    display: flex;
    align-items: center
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.desktop-nav a {
    position: relative;
    padding: 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 20px;
    transition: color .25s
}

.desktop-nav a::after {
    position: absolute;
    content: '';
    height: 1px;
    bottom: 5px;
    left: 12px;
    right: 12px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease)
}

.desktop-nav a:hover,
.desktop-nav [aria-current] {
    color: var(--ink)
}

.desktop-nav a:hover::after,
.desktop-nav [aria-current]::after {
    transform: scaleX(1)
}

.header-contact svg {
    display: none
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 10px
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    background: var(--ink);
    margin: 6px auto;
    transition: transform .25s
}

.menu-toggle[aria-expanded=true] span:first-child {
    transform: translateY(4px) rotate(45deg)
}

.menu-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-4px) rotate(-45deg)
}

.mobile-menu {
    padding: 8px 24px 28px;
    display: grid;
    gap: 8px;
    border-top: 1px solid #0001
}

.mobile-menu a {
    padding: 10px 4px;
    font-size: 20px;
    min-height: 44px
}

.mobile-menu [aria-current] {
    color: var(--accent)
}

/* Hero compositions retain independent words and tilted original art. */
.hero {
    background: var(--surface);
    border-radius: 0 0 var(--radius) var(--radius)
}

.hero-content {
    padding: 96px 24px 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center
}

.hero h1 {
    font-size: 72px;
    line-height: 80px;
    letter-spacing: 0
}

.hero-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.hero-word {
    display: inline-block
}

.hero-chip {
    flex: 0 0 auto;
    width: 81px;
    height: 64px;
    border-radius: 50px;
    transform: rotate(-8deg);
    box-shadow: 0 5px 10px -7px #0008;
    transition: transform .6s var(--ease)
}

.hero-chip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit
}

.hero-chip.chip-1 {
    transform: rotate(7deg)
}

.hero-chip.chip-2 {
    transform: rotate(-6deg)
}

.hero-chip:hover {
    transform: rotate(0) scale(1.08)
}

.hero-intro {
    max-width: 552px;
    font-size: 16px;
    line-height: 24px
}

.hero-content>.button {
    margin-top: 16px
}

.hero-home .hero-content {
    padding-bottom: 48px
}

.hero-about .hero-content {
    padding-bottom: 48px
}

.detail-hero {
    border-radius: 0
}

.detail-hero .hero-content {
    padding-bottom: 64px
}

.selected-work {
    text-align: center;
    padding-bottom: 64px;
    overflow: hidden
}

.selected-work h2 {
    font-size: 48px;
    line-height: 56px
}

.selected-work>p {
    margin: 12px auto 36px;
    padding: 0 24px;
    max-width: 640px
}

.marquee {
    overflow: hidden
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 34s linear infinite;
    will-change: transform
}

.marquee-group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 32px;
    padding-right: 32px
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
    animation-play-state: paused
}

.work-marquee {
    padding: 32px 0
}

.work-marquee .marquee-track {
    animation-duration: 47s;
    animation-direction: reverse
}

.work-marquee:hover .marquee-track,
.work-marquee:focus-within .marquee-track {
    animation-play-state: running
}

.work-marquee:has(.work-tile:hover) .marquee-track,
.work-marquee:has(.work-tile:focus-visible) .marquee-track {
    animation-play-state: paused
}

.work-tile {
    flex: 0 0 auto;
    width: 320px;
    height: 400px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(12, 12, 12, .4);
    overflow: hidden
}

.work-tile img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover
}

.work-tile:nth-child(even) {
    transform: none
}

.work-tile:hover {
    transform: none
}

.work-marquee .marquee-group {
    gap: 16px;
    padding-right: 16px
}

@media(min-width:1440px) {
    .work-tile {
        width: 400px;
        height: 500px
    }

    .work-marquee .marquee-track {
        animation-duration: 58.25s
    }
}

.logo-marquee {
    max-width: 1128px;
    margin: auto;
    padding: 0 24px 64px;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.logo-marquee .marquee-group {
    gap: 88px;
    padding-right: 88px
}

.logo-marquee img {
    width: auto;
    max-width: 162px;
    height: 32px
}

.logo-marquee .marquee-track {
    animation-duration: 28s
}

.ribbons {
    height: 260px;
    position: relative;
    overflow: hidden;
    margin: 80px 0
}

.ribbon {
    position: absolute;
    left: -5%;
    width: 110%;
    top: 88px;
    color: #fff;
    padding: 16px 0;
    background: #191919;
    transform: rotate(-6deg);
    overflow: hidden
}

.ribbon-orange {
    background: #ff641e;
    transform: rotate(6deg)
}

.ribbon span {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    font-family: Cal Sans, sans-serif;
    font-size: 36px;
    line-height: 40px
}

.flower {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0
}

.ribbon-black .marquee-track {
    animation-direction: reverse
}

.ribbon .marquee-track {
    animation-duration: 26s
}

.ribbon .marquee-group {
    gap: 32px;
    padding-right: 32px
}

.intro {
    max-width: 840px;
    text-align: center
}

.hello {
    font-family: cursive;
    font-size: 30px;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 40px
}

.statement {
    font-family: Cal Sans, Arial, sans-serif;
    font-size: 48px;
    line-height: 56px;
    color: var(--ink)
}

.statement .word {
    color: #747474;
    transition: color .4s
}

.statement .word.read {
    color: var(--ink)
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 48px
}

.tags li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 30px;
    background: var(--surface);
    color: var(--muted)
}

.tags li>span {
    font-size: 20px;
    color: var(--ink)
}

/* One identical display heading across Testimonials / Connect / Works / Founder. */
.display-heading {
    position: relative;
    text-align: center;
    font-family: Cal Sans, sans-serif;
    font-weight: 400;
    font-size: var(--display-size);
    line-height: var(--display-line);
    letter-spacing: var(--display-spacing);
    padding: 0 0 .01em;
    margin-bottom: var(--display-gap);
    isolation: isolate
}

.display-heading h2 {
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    background: linear-gradient(#aaa 35%, #aaa9 62%, #aaa0 96%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    padding-bottom: .05em;
    white-space: nowrap
}

.testimonial-grid,
.connect-card,
.founder-grid,
.blog-grid,
.project-stack {
    position: relative;
    z-index: 1
}

.testimonials {
    margin-bottom: 0
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 2.07fr;
    gap: 24px;
    max-width: 1424px;
    margin: auto
}

.stats-card,
.slideshow {
    position: relative;
    min-height: 460px;
    border-radius: 24px;
    overflow: hidden
}

.stats-card {
    background: #7e7e7e;
    color: #fff;
    isolation: isolate
}

.video-poster,
.testimonial-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2
}

.video-poster {
    opacity: .8
}

.stats-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0002, #0000);
    z-index: -1
}

.stats {
    height: 100%;
    min-height: 460px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px
}

.stats strong {
    font: 400 80px/1 Cal Sans, sans-serif;
    display: block
}

.stats span {
    font-size: 14px;
    display: block;
    margin-top: 4px
}

.video-toggle {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    border: 1px solid #fff5;
    border-radius: 50%;
    background: #0005;
    color: white;
    width: 44px;
    height: 44px
}

.video-fallback {
    position: absolute;
    top: 10px;
    right: 12px;
    color: white;
    font-size: 11px
}

.slide {
    position: absolute;
    inset: 0;
    color: #fff;
    animation: slide-in .5s var(--ease)
}

.slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0002, #0002 35%, #0009)
}

.slide-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px
}

.slide-count,
.slide-author {
    color: #fff;
    font-size: 14px
}

.slide-count span {
    color: #fffc
}

.slide-description {
    font: 400 30px/36px Cal Sans, sans-serif;
    color: white;
    max-width: 700px;
    margin-bottom: 40px
}

.slide-author {
    padding-right: 112px
}

.slide-controls {
    position: absolute;
    bottom: 32px;
    right: 32px;
    display: flex;
    gap: 8px;
    z-index: 3
}

.slide-controls button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #ffffff25;
    color: white;
    backdrop-filter: blur(8px);
    transition: background .2s
}

.slide-controls button:hover {
    background: #ffffff50
}

.slide-controls svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7
}

.slide-controls button:first-child svg {
    transform: rotate(180deg)
}

.process {
    text-align: center;
    padding: 16px 0
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
    text-align: left
}

.process-icon {
    font-size: 32px;
    line-height: 1;
    display: block;
    margin-bottom: 28px
}

.process-grid h3 {
    margin-bottom: 20px
}

.process-grid p {
    font-size: 16px;
    line-height: 26px
}

.faq {
    padding: 0 0 32px
}

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

.faq-item {
    border-bottom: 1px solid #0002;
    padding: 0 4px
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    font-size: 18px;
    line-height: 26px;
    color: var(--ink)
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary>span {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.faq-item summary>span::before,
.faq-item summary>span::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 1.5px;
    background: currentColor;
    top: 7px;
    left: 0;
    transition: transform .3s
}

.faq-item summary>span::after {
    transform: rotate(90deg)
}

.faq-item[open] summary>span::after {
    transform: rotate(0)
}

.faq-answer {
    padding: 0 26px 24px 0;
    font-size: 16px;
    line-height: 26px;
    animation: slide-in .3s var(--ease)
}

.connect-card {
    border-radius: var(--radius);
    background: #101010;
    color: #fff;
    overflow: hidden;
    isolation: isolate
}

.connect-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2
}

.connect-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0003;
    z-index: -1
}

.connect-content {
    max-width: 1424px;
    margin: auto;
    padding: 80px 140px 0
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start
}

.connect-grid h3 {
    font-size: 64px;
    line-height: 68px;
    margin-bottom: 20px
}

.connect-grid>div>p {
    color: #ffffffa6;
    font-size: 16px
}

.contact-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px
}

.field {
    min-width: 0
}

.field label {
    display: block;
    font-size: 14px;
    margin-bottom: 12px
}

.field input,
.field select,
.field textarea {
    display: block;
    border: 0;
    border-bottom: 1px solid #ffffff40;
    background: transparent;
    border-radius: 0;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 0 14px;
    color: inherit;
    font-size: 14px;
    line-height: 22px;
    transition: border-color .2s, background .2s
}

.field input::placeholder,
.field textarea::placeholder {
    color: #ffffff8c;
    opacity: 1
}

.field textarea {
    resize: vertical;
    min-height: 76px;
    max-height: 400px
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: 0;
    border-bottom-color: var(--accent);
    box-shadow: 0 1px var(--accent)
}

.field [aria-invalid=true] {
    border-bottom-color: #ff8665
}

.contact-form .submit-button {
    width: 100%;
    background: #fff;
    color: #131313
}

.contact-form .submit-button:hover {
    background: #ededed
}

.contact-form .submit-button:disabled {
    opacity: .65;
    transform: none
}

.form-status {
    min-height: 1.5em;
    font-size: 14px;
    line-height: 22px;
    color: inherit;
    margin-top: -12px;
    overflow-wrap: anywhere
}

.form-status[data-state=error] {
    color: #ffb59e
}

.email-link {
    display: block;
    margin: 48px -140px 0;
    padding: 24px 0 36px
}

.email-marquee span {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: Cal Sans, sans-serif;
    font-size: 24px;
    color: white;
    white-space: nowrap
}

.email-marquee .marquee-track {
    animation-duration: 36s
}

.email-marquee .flower {
    width: 20px;
    height: 20px
}

/* Projects: each full card is one keyboard-accessible link. */
.project-stack {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-bottom: 40px
}

.project-stage {
    position: sticky;
    top: 28px;
    transform-origin: center top
}

.project-stage:nth-child(2) {
    top: 40px
}

.project-stage:nth-child(3) {
    top: 52px
}

.project-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.05fr 1fr;
    gap: 48px;
    align-items: stretch;
    padding: 64px 140px;
    min-height: 650px;
    overflow: hidden;
    border-radius: 32px;
    color: white;
    background: #151515;
    isolation: isolate;
    box-shadow: var(--shadow);
    transition: box-shadow .5s
}

.project-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(28px) brightness(.45);
    transform: scale(1.1);
    z-index: -2
}

.project-card::before {
    position: absolute;
    inset: 0;
    content: '';
    background: #0002;
    z-index: -1
}

.project-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px
}

.project-intro>p {
    max-width: 340px;
    color: #fff9;
    font-size: 16px;
    line-height: 26px
}

.project-number {
    font-size: 14px;
    color: #fff;
    margin-bottom: 16px
}

.project-number span {
    color: #ffffff80
}

.project-intro h3 {
    font-size: 64px;
    line-height: 1
}

.project-cover {
    position: relative;
    align-self: center;
    justify-self: center;
    max-width: 456px;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 40px -20px #000b;
    transition: transform .6s var(--ease)
}

.project-cover>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease)
}

.project-card:hover .project-cover {
    transform: rotate(-1.5deg) translateY(-4px)
}

.project-card:hover .project-cover>img {
    transform: scale(1.03)
}

.project-open {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff3;
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center
}

.project-open svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    transform: rotate(-40deg)
}

.project-metadata {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    font-size: 16px;
    line-height: 26px
}

.project-metadata dt {
    color: #ffffff80;
    font-size: 14px;
    margin-bottom: 12px
}

.project-metadata dd {
    margin-bottom: 6px
}

.services {
    margin-top: 112px
}

.service-card {
    border-top: 1px solid #0002;
    padding: 48px 0 64px;
    display: grid;
    grid-template-columns: .75fr 1.5fr 1fr;
    gap: 48px;
    align-items: start
}

.service-card>h3 {
    font-size: 32px
}

.service-art>img {
    width: 100%;
    aspect-ratio: 1.38;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform .6s var(--ease)
}

.service-card:hover .service-art>img {
    transform: rotate(-2deg) translateY(-8px)
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px
}

.service-tags li {
    font-size: 12px;
    border: 1px solid #0002;
    padding: 6px 10px;
    border-radius: 30px
}

.service-copy p {
    font-size: 16px;
    line-height: 26px
}

.service-copy dl {
    display: grid;
    gap: 24px;
    margin-top: 32px
}

.service-copy dl>div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #0002
}

.service-copy dt {
    color: var(--muted);
    font-size: 14px
}

.service-copy dd {
    font-size: 16px
}

.pricing {
    max-width: 792px
}

.pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-bottom: 64px
}

.price-card {
    position: sticky;
    top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 32px;
    border-radius: 24px;
    background: var(--surface);
    min-height: 420px;
    box-shadow: 0 10px 24px -18px #0003;
    isolation: isolate;
    overflow: hidden
}

.price-card.premium {
    color: #fff;
    background: #150500;
    z-index: 2;
    top: 70px
}

.price-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.plan-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 56px
}

.plan-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid #fff1;
    background: #222;
    color: white;
    box-shadow: 0 7px 12px #0003;
    font-size: 26px;
    margin-bottom: 24px
}

.plan-left h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px
}

.plan-left p {
    font-size: 14px;
    line-height: 22px
}

.premium .plan-left p,
.premium .delivery {
    color: #ffffffb3
}

.delivery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #8883;
    padding-bottom: 16px;
    font-size: 14px;
    color: var(--muted)
}

.plan-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.price {
    font: 400 48px/48px Cal Sans, sans-serif;
    color: inherit
}

.price small {
    font: 400 14px/22px Inter, sans-serif;
    color: var(--muted)
}

.premium .price {
    font-size: 40px;
    line-height: 44px
}

.plan-right ul {
    display: grid;
    gap: 14px;
    border-top: 1px solid #8883;
    padding-top: 24px;
    font-size: 14px;
    line-height: 20px
}

.plan-right li {
    display: flex;
    align-items: start;
    gap: 10px
}

.plan-right li>span {
    flex-shrink: 0;
    border-radius: 50%;
    background: #8882;
    display: grid;
    place-items: center;
    font-size: 11px;
    width: 18px;
    height: 18px
}

.plan-right .button {
    margin-top: auto;
    background: #555
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 96px;
    align-items: center;
    margin: 0 auto
}

.founder-photo {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/5
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.founder-copy h3 {
    margin-bottom: 24px
}

.founder-copy>p {
    font-size: 16px;
    line-height: 26px
}

.timeline {
    margin-top: 40px
}

.timeline>div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    padding: 20px 0;
    border-bottom: 1px solid #0002
}

.timeline dd {
    color: var(--muted);
    white-space: nowrap
}

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

.tool-card {
    position: relative;
    background: var(--surface);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 8px 20px -16px #0004;
    transition: transform .4s var(--ease)
}

.tool-card:hover {
    transform: translateY(-6px)
}

.tool-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 36px
}

.pro-badge {
    position: absolute;
    top: 36px;
    right: 32px;
    font-size: 10px;
    padding: 2px 8px;
    background: #dedede;
    border-radius: 5px
}

.tool-card h3 {
    font-size: 22px;
    margin-bottom: 16px
}

.tool-card p {
    font-size: 14px;
    line-height: 24px
}

.project-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
    padding: 48px;
    background: #161616;
    color: #fff;
    margin-top: 24px
}

.project-cta h3 {
    font-size: 40px;
    line-height: 44px
}

.project-cta h3>span {
    color: var(--accent)
}

.project-cta p {
    max-width: 500px;
    margin-top: 20px;
    color: #fffb;
    font-size: 14px
}

.project-cta .button {
    flex-shrink: 0
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 24px;
    max-width: 1424px;
    margin: auto
}

.blog-card {
    display: block;
    min-width: 0
}

.blog-art {
    position: relative;
    border-radius: 24px;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #bcbcbc;
    box-shadow: var(--shadow)
}

.blog-art>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease)
}

.blog-card:hover .blog-art>img {
    transform: scale(1.045)
}

.article-arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffffdc;
    opacity: 0;
    transform: translateY(10px);
    transition: transform .4s var(--ease), opacity .4s
}

.article-arrow svg {
    stroke: var(--ink);
    fill: none;
    stroke-width: 1.5;
    width: 24px;
    transform: rotate(-40deg)
}

.blog-card:hover .article-arrow,
.blog-card:focus-visible .article-arrow {
    opacity: 1;
    transform: none
}

.blog-card-copy {
    padding: 24px 8px
}

.blog-card h3 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 10px
}

.blog-card p {
    font-size: 16px;
    line-height: 24px
}

.blog-card-copy>span {
    display: block;
    font-size: 14px;
    color: var(--muted);
    margin-top: 16px
}

.detail-cover {
    width: 100%;
    height: clamp(360px, 43vw, 680px);
    background: #131313;
    overflow: hidden
}

.detail-cover>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.detail-cover.article-cover {
    height: 540px
}

.detail-body {
    margin-top: 80px;
    margin-bottom: 112px;
    max-width: 1128px
}

.detail-meta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--muted);
    padding-bottom: 32px;
    border-bottom: 1px solid #0002;
    margin-bottom: 48px
}

.prose {
    margin: 64px 0
}

.prose h2,
.legal-body h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 32px
}

.prose p,
.legal-body p {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px
}

.detail-image {
    margin: 80px 0
}

.detail-image img {
    width: 100%;
    height: auto;
    max-height: 1200px;
    object-fit: contain
}

.client-review {
    text-align: center;
    padding: 64px 0
}

.review-logo {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    margin: 40px auto
}

.client-review blockquote {
    font: 400 44px/52px Cal Sans, sans-serif;
    max-width: 940px;
    margin: 48px auto;
    color: var(--muted)
}

.client-review>p:last-child {
    color: var(--ink);
    font-size: 16px
}

.client-review>p:last-child span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-top: 6px
}

.next-project .section-intro {
    margin-bottom: 64px
}

.next-project .project-card {
    position: relative
}

.inquiry {
    margin-top: 112px
}

.inquiry h2 {
    margin-bottom: 72px
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: start
}

.inquiry figure {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5
}

.inquiry figure img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.full-form .field label {
    font-size: 16px
}

.full-form .field input,
.full-form .field select,
.full-form .field textarea {
    border-color: #0003
}

.full-form .field input::placeholder,
.full-form .field textarea::placeholder {
    color: var(--muted)
}

.full-form .submit-button {
    color: white;
    background: #353535
}

.full-form .submit-button:hover {
    color: white;
    background: #222
}

.full-form .form-status[data-state=error] {
    color: #a92d00
}

.full-form select option {
    background: var(--surface);
    color: var(--ink)
}

.legal-body {
    margin-top: 112px;
    max-width: 1128px
}

.legal-body h2 {
    margin-top: 72px
}

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

.legal-body .updated {
    font-size: 14px;
    border-top: 1px solid #0002;
    padding-top: 32px;
    margin-top: 40px
}

.legal-body .legal-list-item {
    margin: 12px 0;
    font-size: 16px
}

/* Shared footer wordmark always has its natural aspect ratio. */
main> :last-child {
    margin-bottom: 0;
    padding-bottom: 0
}

main>.connect.section-wide:last-child {
    width: calc(100% - 16px);
    max-width: none
}

main>.connect.section-wide:last-child .connect-card {
    border-radius: var(--radius)
}

main:has(>.connect:last-child)+.site-footer {
    margin-top: 8px
}

main:has(>.connect:last-child)+.site-footer .footer-card {
    border-radius: var(--radius)
}

.site-footer {
    padding: 0 8px 8px
}

.footer-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #121212;
    color: white;
    isolation: isolate
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.footer-content {
    max-width: 1424px;
    margin: auto;
    padding: 40px 30px 0
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px
}

.footer-columns h2 {
    font: 400 14px/22px Inter, sans-serif;
    color: #fff8;
    margin-bottom: 24px
}

.footer-columns nav {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-columns a {
    width: max-content;
    max-width: 100%;
    font-size: 22px;
    line-height: 30px;
    min-height: 36px;
    transition: color .3s, transform .3s var(--ease)
}

.footer-columns a:hover {
    color: #ff996b;
    transform: translateX(4px)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    margin-top: 40px;
    padding-bottom: 16px;
    color: #fffb
}

.footer-bottom a {
    min-height: 28px;
    display: flex;
    align-items: center
}

.india-clock {
    padding-left: 6px
}

.footer-logo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 867/288;
    object-fit: contain;
    margin: 0 auto -2px
}

.motion-paused .marquee-track {
    animation-play-state: paused !important
}

.motion-paused .word {
    color: var(--ink)
}

/* Content is visible by default. Enhancement never relies on opacity:0 at load. */
@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

@keyframes slide-in {
    from {
        opacity: .25;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes reveal {
    from {
        opacity: 0;
        filter: blur(6px);
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: none
    }
}

@keyframes fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.is-revealing {
    animation: reveal .7s var(--ease) both
}

.is-revealing[data-reveal-type=fade-in] {
    animation-name: fade-in
}

.is-revealing[data-reveal-type=slide-up] {
    animation-name: slide-up
}

.is-revealing[data-reveal-type=scale-in] {
    animation-name: scale-in
}

.hero-word.is-revealing {
    animation-duration: .9s
}

.hero-line:nth-child(2) .is-revealing {
    animation-delay: .08s
}

.hero-line:nth-child(3) .is-revealing {
    animation-delay: .16s
}

/* Scroll-linked cover motion — reference-like subtle parallax. */
.project-cover {
    will-change: transform
}

@media(min-width:1600px) {
    .testimonial-grid {
        max-width: 1600px
    }

    .stats-card,
    .slideshow,
    .stats {
        min-height: 520px
    }

    .hero h1 {
        font-size: 80px;
        line-height: 88px
    }

    .hero-content {
        padding-top: 108px
    }

    .project-card {
        padding: 80px 140px
    }

    .project-intro h3 {
        font-size: 80px
    }

    .section-wide {
        max-width: 1888px
    }
}

@media(max-width:1399px) {
    :root {
        --display-size: clamp(80px, 7.1vw, 100px)
    }

    .project-card {
        padding: 48px 40px;
        gap: 36px;
        min-height: 600px
    }

    .connect-content {
        padding: 64px 64px 0
    }

    .email-link {
        margin-left: -64px;
        margin-right: -64px
    }

    .footer-content {
        padding: 40px 30px 0
    }

    .connect-grid {
        gap: 64px
    }

    .connect-grid h3 {
        font-size: 56px;
        line-height: 60px
    }

    .inquiry-grid {
        gap: 80px
    }

    .founder-grid {
        gap: 64px
    }
}

@media(max-width:1099px) {
    :root {
        --section-gap: 112px
    }

    .hero h1 {
        font-size: 60px;
        line-height: 68px
    }

    .hero-chip {
        width: 68px;
        height: 54px
    }

    .hero-line {
        gap: 12px
    }

    .header-inner {
        width: calc(100% - 64px)
    }

    .hero-content {
        padding-top: 80px
    }

    .section {
        width: calc(100% - 64px)
    }

    h2 {
        font-size: 52px;
        line-height: 58px
    }

    .project-card {
        grid-template-columns: .95fr 1.1fr .55fr;
        gap: 24px;
        min-height: 530px;
        padding: 40px 32px
    }

    .project-intro h3 {
        font-size: 52px
    }

    .project-intro>p,
    .project-metadata {
        font-size: 14px;
        line-height: 22px
    }

    .service-card {
        grid-template-columns: .6fr 1.3fr 1fr;
        gap: 24px
    }

    .service-card>h3 {
        font-size: 28px
    }

    .stats strong {
        font-size: 68px
    }

    .stats {
        padding: 28px
    }

    .testimonial-grid {
        gap: 20px
    }

    .stats-card,
    .slideshow,
    .stats {
        min-height: 440px
    }

    .slide-content {
        padding: 32px
    }

    .slide-description {
        font-size: 28px;
        line-height: 34px
    }

    .connect-grid {
        gap: 40px
    }

    .connect-content {
        padding: 56px 40px 0
    }

    .connect-grid h3 {
        font-size: 48px;
        line-height: 52px
    }

    .footer-content {
        padding: 36px 28px 0
    }

    .email-link {
        margin-left: -40px;
        margin-right: -40px
    }

    .founder-grid {
        gap: 40px
    }

    .tools-grid {
        gap: 16px
    }

    .tool-card {
        padding: 24px
    }

    .process-grid {
        gap: 32px
    }

    .blog-card h3 {
        font-size: 24px;
        line-height: 30px
    }
}

@media(max-width:809px) {
    :root {
        --section-gap: 88px;
        --display-size: clamp(64px, 10.4vw, 84px)
    }

    .header-inner {
        height: 108px;
        padding-top: 32px;
        width: calc(100% - 40px)
    }

    .desktop-nav,
    .header-contact {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .logo {
        width: 104px;
        height: 44px
    }

    .availability {
        font-size: 14px;
        line-height: 20px;
        padding: 0
    }

    .hero-content {
        padding: 64px 24px 72px
    }

    .hero h1 {
        font-size: 48px;
        line-height: 56px
    }

    .hero-chip {
        width: 60px;
        height: 46px
    }

    .hero-line {
        gap: 10px
    }

    .hero-intro {
        font-size: 15px;
        line-height: 24px;
        max-width: 500px
    }

    .hero-content>.button {
        margin-top: 4px
    }

    .selected-work h2 {
        font-size: 40px;
        line-height: 48px
    }

    .work-tile {
        width: 280px;
        height: 350px
    }

    .work-marquee .marquee-track {
        animation-duration: 41.5s
    }

    .ribbons {
        height: 220px;
        margin: 64px 0
    }

    .ribbon {
        top: 76px;
        padding: 12px 0
    }

    .ribbon span {
        font-size: 28px;
        line-height: 34px
    }

    .statement {
        font-size: 40px;
        line-height: 48px
    }

    .section {
        width: calc(100% - 48px)
    }

    h2 {
        font-size: 44px;
        line-height: 50px
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1.7fr;
        gap: 16px
    }

    .stats-card,
    .slideshow,
    .stats {
        min-height: 410px
    }

    .stats {
        padding: 24px
    }

    .stats strong {
        font-size: 56px
    }

    .stats span {
        font-size: 12px;
        line-height: 18px
    }

    .slide-content {
        padding: 24px
    }

    .slide-description {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 54px
    }

    .slide-controls {
        bottom: 24px;
        right: 20px
    }

    .process-grid {
        gap: 24px
    }

    .process-grid h3 {
        font-size: 28px
    }

    .process-grid p {
        font-size: 14px;
        line-height: 24px
    }

    .faq-grid {
        gap: 24px
    }

    .faq-item summary {
        font-size: 16px
    }

    .connect-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .connect-content {
        padding: 48px 32px 0
    }

    .connect-grid h3 {
        max-width: 500px
    }

    .email-link {
        margin-left: -32px;
        margin-right: -32px
    }

    .contact-form {
        max-width: none;
        gap: 24px
    }

    .connect .contact-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .connect .contact-form .field:nth-child(3),
    .connect .submit-button,
    .connect .form-status {
        grid-column: 1/-1
    }

    .project-card {
        grid-template-columns: 1fr 1.1fr;
        gap: 24px;
        padding: 32px;
        min-height: 620px
    }

    .project-cover {
        grid-column: 2;
        grid-row: 1/3;
        align-self: center
    }

    .project-metadata {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .project-metadata>div:last-child {
        grid-column: 1/-1
    }

    .project-intro h3 {
        font-size: 44px
    }

    .project-intro {
        gap: 28px
    }

    .project-stack {
        gap: 24px
    }

    .service-card {
        grid-template-columns: 1fr 1fr;
        gap: 24px 40px
    }

    .service-card>h3 {
        grid-column: 1/-1
    }

    .service-art {
        grid-column: 1
    }

    .service-copy {
        grid-column: 2
    }

    .price-card {
        gap: 32px;
        padding: 32px 24px
    }

    .price {
        font-size: 40px;
        line-height: 44px
    }

    .founder-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 40px
    }

    .founder-photo {
        max-width: 430px;
        width: 100%;
        margin: auto
    }

    .founder-copy h3 {
        font-size: 36px
    }

    .tools-grid {
        grid-template-columns: 1fr
    }

    .tool-card {
        padding: 32px
    }

    .tool-icon {
        margin-bottom: 24px
    }

    .tool-card h3 {
        font-size: 26px
    }

    .project-cta {
        padding: 32px;
        gap: 24px
    }

    .project-cta h3 {
        font-size: 32px;
        line-height: 38px
    }

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

    .blog-art {
        border-radius: 20px
    }

    .blog-card-copy {
        padding: 20px 4px
    }

    .blog-card p {
        font-size: 14px
    }

    .inquiry-grid {
        gap: 40px
    }

    .inquiry h2 {
        margin-bottom: 48px
    }

    .detail-body {
        margin-top: 56px
    }

    .prose p,
    .legal-body p {
        font-size: 16px;
        line-height: 26px
    }

    .detail-cover.article-cover {
        height: 400px
    }

    .prose h2,
    .legal-body h2 {
        font-size: 32px;
        line-height: 38px
    }

    .client-review blockquote {
        font-size: 36px;
        line-height: 44px
    }

    .footer-content {
        padding: 32px 24px 0
    }

    .footer-columns {
        gap: 24px
    }

    .footer-columns a {
        font-size: 18px;
        line-height: 28px
    }

    .footer-bottom {
        margin-top: 32px;
        font-size: 12px;
        gap: 12px
    }

    .motion-toggle {
        right: 12px;
        bottom: 8px
    }
}

@media(max-width:599px) {
    :root {
        --radius: 24px;
        --section-gap: 72px;
        --display-size: clamp(44px, 12.5vw, 74px);
        --display-gap: -.12em
    }

    .section-wide {
        width: calc(100% - 24px)
    }

    .section {
        width: calc(100% - 40px)
    }

    .header-inner {
        height: 96px;
        padding-top: 28px
    }

    .logo {
        width: 94px;
        height: 40px
    }

    .hero-content {
        padding: 48px 18px 56px;
        gap: 24px
    }

    .hero h1 {
        font-size: clamp(32px, 8.25vw, 48px);
        line-height: 1.16
    }

    .hero-line {
        gap: 7px;
        flex-wrap: nowrap;
        min-height: 1.26em
    }

    .hero-chip {
        width: 42px;
        height: 34px
    }

    .hero-home .hero-line:nth-child(2) {
        flex-wrap: wrap;
        max-width: 360px;
        margin: auto
    }

    .hero-home .hero-line:nth-child(2) .hero-word:last-child {
        white-space: nowrap
    }

    .hero-home h1 {
        font-size: clamp(31px, 8.2vw, 44px)
    }

    .hero-home .hero-chip {
        width: 38px;
        height: 30px
    }

    .hero-about .hero-line,
    .hero-services .hero-line,
    .hero-contact .hero-line,
    .hero-terms-and-condition .hero-line {
        flex-wrap: wrap
    }

    .hero-about .hero-line .hero-word,
    .hero-services .hero-line .hero-word {
        white-space: nowrap
    }

    .hero-about .hero-line:first-child .hero-word:first-child {
        flex-basis: 100%
    }

    .hero-services .hero-line:first-child .hero-word:first-child {
        flex-basis: 100%
    }

    .hero-intro {
        max-width: 340px;
        font-size: 14px;
        line-height: 22px
    }

    .hero-content>.button {
        margin-top: 8px
    }

    .hero-home .hero-content {
        padding-bottom: 40px
    }

    .hero-home .hero-word {
        letter-spacing: -.02em
    }

    .selected-work h2 {
        font-size: 34px;
        line-height: 40px
    }

    .selected-work>p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px
    }

    .selected-work {
        padding-bottom: 24px
    }

    .work-tile {
        width: 280px;
        height: 350px;
        border-radius: 24px
    }

    .work-marquee {
        padding: 32px 0
    }

    .logo-marquee {
        padding-bottom: 48px
    }

    .logo-marquee .marquee-group {
        gap: 48px;
        padding-right: 48px
    }

    .logo-marquee img {
        height: 25px;
        max-width: 126px
    }

    .ribbons {
        height: 170px;
        margin: 40px 0
    }

    .ribbon {
        top: 56px;
        padding: 10px 0;
        width: 120%;
        left: -10%
    }

    .ribbon span {
        font-size: 22px;
        line-height: 28px;
        gap: 20px
    }

    .ribbon .flower {
        width: 18px;
        height: 18px
    }

    .ribbon .marquee-group {
        gap: 20px;
        padding-right: 20px
    }

    .hello {
        font-size: 26px;
        margin-bottom: 28px
    }

    .statement {
        font-size: 32px;
        line-height: 38px
    }

    .tags {
        gap: 8px;
        margin-top: 32px
    }

    .tags li {
        font-size: 12px;
        padding: 8px 12px
    }

    .tags li>span {
        font-size: 16px
    }

    .display-heading h2 {
        padding-bottom: .08em
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .stats-card {
        min-height: 330px
    }

    .stats {
        min-height: 330px;
        padding: 28px;
        gap: 24px
    }

    .stats strong {
        font-size: 56px
    }

    .stats span {
        font-size: 13px
    }

    .slideshow {
        min-height: 380px
    }

    .slide-content {
        padding: 28px
    }

    .slide-description {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 36px
    }

    .slide-author {
        font-size: 12px
    }

    .slide-controls {
        bottom: 24px;
        right: 24px
    }

    .process h2,
    h2 {
        font-size: 36px;
        line-height: 42px
    }

    .eyebrow {
        font-size: 12px;
        margin-bottom: 20px
    }

    .process-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 36px;
        margin-top: 48px
    }

    .process-icon {
        margin-bottom: 18px
    }

    .process-grid h3 {
        font-size: 30px;
        margin-bottom: 14px
    }

    .process-grid p {
        font-size: 16px;
        line-height: 26px
    }

    .section-title,
    .section-intro {
        margin-bottom: 40px
    }

    .section-intro>p {
        font-size: 14px;
        line-height: 22px
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .faq-item summary {
        font-size: 16px;
        line-height: 24px;
        padding: 22px 0
    }

    .faq-answer {
        font-size: 14px;
        line-height: 24px
    }

    .connect-content {
        padding: 40px 24px 0
    }

    .connect-grid {
        gap: 36px
    }

    .connect-grid h3 {
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 16px
    }

    .connect-grid>div>p {
        font-size: 14px
    }

    .connect .contact-form {
        display: flex
    }

    .contact-form {
        gap: 22px
    }

    .email-link {
        margin: 32px -24px 0;
        padding: 20px 0 28px
    }

    .email-marquee span {
        font-size: 22px;
        gap: 20px
    }

    .project-stage {
        position: sticky;
        top: 50px !important;
        transform: none !important
    }

    .project-stack {
        gap: 24px;
        padding-bottom: 0
    }

    .project-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 28px;
        border-radius: 24px
    }

    .project-intro {
        display: contents
    }

    .project-intro>p {
        order: 2;
        font-size: 14px;
        line-height: 22px;
        max-width: none
    }

    .project-intro>div {
        order: 0;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        flex-direction: row-reverse
    }

    .project-intro h3 {
        font-size: 40px
    }

    .project-number {
        font-size: 12px;
        margin: 0
    }

    .project-cover {
        grid-column: auto;
        grid-row: auto;
        order: 1;
        max-width: none;
        aspect-ratio: 4/4.6;
        border-radius: 18px
    }

    .project-metadata {
        order: 3;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        font-size: 14px
    }

    .project-metadata>div:last-child {
        grid-column: 1/-1
    }

    .project-metadata dt {
        margin-bottom: 6px
    }

    .project-metadata>div:last-child dd {
        display: inline-block;
        margin-right: 12px
    }

    .service-card {
        grid-template-columns: 1fr;
        padding: 32px 0 48px;
        gap: 28px
    }

    .service-card>h3 {
        grid-column: auto;
        font-size: 32px
    }

    .service-art,
    .service-copy {
        grid-column: auto
    }

    .service-copy dl {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .service-copy dl>div {
        display: block
    }

    .service-copy dt {
        margin-bottom: 8px
    }

    .pricing-stack {
        gap: 24px;
        padding-bottom: 0
    }

    .price-card {
        position: sticky;
        top: 50px !important;
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px
    }

    .plan-left {
        gap: 32px
    }

    .plan-right {
        gap: 24px
    }

    .plan-icon {
        margin-bottom: 20px
    }

    .price,
    .premium .price {
        font-size: 40px;
        line-height: 44px
    }

    .price-card.premium {
        top: 50px !important
    }

    .premium .price br {
        display: none
    }

    .premium .price .accent {
        display: block
    }

    .founder-grid {
        width: calc(100% - 16px);
        gap: 32px
    }

    .founder-photo {
        max-width: none
    }

    .founder-copy h3 {
        font-size: 30px
    }

    .founder-copy>p {
        font-size: 15px;
        line-height: 25px
    }

    .timeline>div {
        font-size: 12px;
        gap: 12px
    }

    .tool-card {
        padding: 28px
    }

    .project-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px
    }

    .project-cta .button {
        width: 100%
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .blog-art {
        aspect-ratio: 4/4.8
    }

    .blog-card h3 {
        font-size: 28px;
        line-height: 34px
    }

    .blog-card-copy {
        padding: 20px 8px
    }

    .article-arrow {
        opacity: 1;
        transform: none;
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px
    }

    .detail-hero .hero-line {
        flex-wrap: wrap
    }

    .detail-hero .hero-content {
        padding-bottom: 48px
    }

    .detail-hero h1 {
        font-size: 38px;
        line-height: 44px
    }

    .detail-cover,
    .detail-cover.article-cover {
        height: 320px
    }

    .detail-body {
        margin-top: 40px
    }

    .detail-meta {
        font-size: 12px;
        gap: 12px;
        line-height: 20px;
        margin-bottom: 40px;
        padding-bottom: 24px
    }

    .prose {
        margin: 40px 0
    }

    .prose h2,
    .legal-body h2 {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 24px
    }

    .prose p,
    .legal-body p {
        font-size: 16px;
        line-height: 26px
    }

    .detail-image {
        margin: 48px 0
    }

    .client-review {
        padding: 32px 0
    }

    .client-review blockquote {
        font-size: 28px;
        line-height: 36px;
        margin: 32px auto
    }

    .review-logo {
        max-height: 80px;
        margin: 24px auto
    }

    .inquiry h2 {
        margin-bottom: 40px
    }

    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .full-form .field label {
        font-size: 14px
    }

    .inquiry figure {
        max-height: 500px
    }

    .legal-body h2 {
        margin-top: 48px
    }

    .footer-content {
        padding: 28px 20px 0
    }

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

    .footer-columns>div:last-child {
        grid-column: 1/-1
    }

    .footer-columns>div:last-child nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 24px
    }

    .footer-columns h2 {
        margin-bottom: 16px;
        font-size: 12px
    }

    .footer-columns a {
        font-size: 16px;
        line-height: 24px;
        min-height: 36px
    }

    .footer-bottom {
        margin-top: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        font-size: 11px;
        padding-bottom: 12px
    }

    .footer-bottom>span:first-child {
        grid-column: 1/-1
    }

    .footer-bottom>a {
        justify-content: flex-end
    }

    .site-footer {
        padding: 0 8px 8px
    }

}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }

    .hero-chip {
        transform: none
    }

    .project-stage,
    .price-card {
        position: relative;
        top: auto !important
    }

    .statement .word {
        color: var(--ink)
    }

    .motion-toggle {
        display: none
    }

    .testimonial-video {
        display: none
    }
}
