:root {
    --black: #11110f;
    --ink: #171714;
    --paper: #eeeadd;
    --paper-bright: #f6f3ea;
    --acid: #ddff43;
    --orange: #ff5b35;
    --line-dark: rgba(17, 17, 15, .18);
    --line-light: rgba(255, 255, 255, .18);
    --sans: "Noto Sans KR", sans-serif;
    --display: "Space Grotesk", "Noto Sans KR", sans-serif;
    --latin: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    animation: site-in .55s ease both;
}
@keyframes site-in { from { opacity: 0; } to { opacity: 1; } }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--black); background: var(--acid); }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--acid);
    color: var(--black);
    transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.page-progress { position: fixed; z-index: 200; top: 0; left: 0; right: 0; height: 3px; }
.page-progress span { display: block; width: 0; height: 100%; background: var(--acid); }

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(22px, 4vw, 64px);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: color .3s, background .3s, border-color .3s, transform .3s;
}
.site-header.scrolled {
    color: var(--ink);
    background: rgba(238, 234, 221, .9);
    border-bottom-color: var(--line-dark);
    backdrop-filter: blur(16px);
}
.brand { position: relative; z-index: 2; display: block; width: 118px; }
.brand img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    filter: none;
    clip-path: inset(0 81.1% 0 0);
}
.brand::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: #fff;
    -webkit-mask: url("/res/pii_logo_b.png") 0 0 / 100% 100% no-repeat;
    mask: url("/res/pii_logo_b.png") 0 0 / 100% 100% no-repeat;
    clip-path: inset(0 0 0 18.9%);
    pointer-events: none;
    transition: background-color .3s;
}
.site-header.scrolled .brand::after { background: var(--black); }
.desktop-nav { display: flex; gap: clamp(18px, 2.4vw, 38px); align-items: center; }
.desktop-nav a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .nav-ax {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-left: 4px;
    padding: 9px 14px;
    color: var(--black);
    background: var(--acid);
    border: 1px solid var(--acid);
    border-radius: 100px;
    font-family: var(--latin);
    font-size: 10px;
    letter-spacing: .08em;
}
.desktop-nav .nav-ax::after { display: none; }
.site-header.scrolled .desktop-nav .nav-ax { color: var(--paper-bright); background: var(--black); border-color: var(--black); }
.menu-toggle {
    display: none;
    position: relative;
    z-index: 102;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.menu-toggle span { position: absolute; left: 8px; width: 28px; height: 1px; background: currentColor; transition: transform .3s, top .3s; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 27px; }
.menu-open .menu-toggle span:first-child { top: 22px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
    position: fixed;
    z-index: 99;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    padding: 100px 8vw 40px;
    color: var(--paper);
    background: var(--black);
    opacity: 0;
    transition: opacity .3s, visibility .3s;
}
.mobile-menu.open { visibility: visible; opacity: 1; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 10px 0; font-family: var(--display); font-size: clamp(35px, 10vw, 68px); line-height: 1.15; border-bottom: 1px solid var(--line-light); }
.mobile-menu nav span { margin-right: 14px; color: var(--acid); font-family: var(--latin); font-size: 12px; vertical-align: top; }
.mobile-menu nav .mobile-ax { margin-top: 15px; padding-inline: 18px; color: var(--black); background: var(--acid); border: 0; }
.mobile-menu nav .mobile-ax span { color: var(--black); }
.mobile-menu p { margin-top: 34px; color: rgba(255, 255, 255, .5); font-family: var(--latin); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--black);
}
.hero-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .56) 36%, rgba(0, 0, 0, .03) 74%, rgba(0, 0, 0, .25) 100%), url("/res/new_a/hero-ax-v2.webp") 62% 50% / cover no-repeat;
    transform: scale(1.035) translate3d(0, var(--hero-shift, 0px), 0);
    will-change: transform;
}
.hero::after { content: ""; position: absolute; z-index: 1; top: 18%; right: 19%; width: min(27vw, 390px); aspect-ratio: 1; border: 1px solid rgba(221, 255, 67, .46); border-radius: 50%; box-shadow: 0 0 70px rgba(221, 255, 67, .08); }
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
    background-size: 12.5vw 100%, 12.5vw 100%;
}
.hero-copy { position: relative; z-index: 2; width: 100%; padding: 150px clamp(22px, 4vw, 64px) 98px; }
.hero-kicker { margin: 0 0 5vh; font-family: var(--latin); font-size: 12px; letter-spacing: .22em; }
.hero h1 { position: relative; z-index: 3; margin: 0; font-family: var(--display); font-size: clamp(68px, 13.2vw, 210px); font-weight: 500; line-height: .78; letter-spacing: -.075em; text-transform: uppercase; }
.hero h1 span { display: block; }
.hero h1 span:nth-child(2) { padding-left: 11vw; }
.hero h1 span:nth-child(3) { text-align: right; }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .9); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: 7vh; }
.hero-bottom > p { margin: 0; font-size: clamp(15px, 1.4vw, 20px); font-weight: 300; }
.round-link { width: 88px; height: 88px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; transition: color .3s, background .3s, transform .3s; }
.round-link span { display: block; font-family: var(--latin); font-size: 9px; letter-spacing: .16em; }
.round-link b { display: block; font-size: 18px; font-weight: 400; }
.round-link:hover { color: var(--black); background: var(--acid); border-color: var(--acid); transform: rotate(8deg); }
.hero-index { position: absolute; z-index: 2; top: 105px; right: clamp(22px, 4vw, 64px); font-family: var(--latin); font-size: 11px; line-height: 1.5; text-align: right; letter-spacing: .12em; }
.hero-art-note { position: absolute; z-index: 2; right: clamp(112px, 11vw, 190px); bottom: 105px; padding: 11px 14px; color: rgba(255, 255, 255, .62); background: rgba(0, 0, 0, .42); border-left: 1px solid var(--acid); font-family: var(--latin); font-size: 8px; line-height: 1.85; letter-spacing: .16em; backdrop-filter: blur(10px); }
.hero-art-note span { color: var(--acid); }
.marquee { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; overflow: hidden; padding: 7px 0; color: var(--black); background: var(--acid); white-space: nowrap; }
.marquee div { width: max-content; display: flex; align-items: center; animation: marquee 28s linear infinite; }
.marquee span { font-family: var(--display); font-size: 12px; letter-spacing: .08em; }
.marquee i { margin: 0 26px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.ax-callout {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 10vw, 150px) clamp(22px, 4vw, 64px);
    color: var(--black);
    background: var(--acid);
}
.ax-callout::after { content: "AX"; position: absolute; right: -3vw; bottom: -13vw; color: transparent; font-family: var(--display); font-size: clamp(230px, 40vw, 620px); font-weight: 600; line-height: 1; letter-spacing: -.12em; -webkit-text-stroke: 1px rgba(17, 17, 15, .15); pointer-events: none; }
.ax-callout-head { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 25px; padding-bottom: 18px; border-bottom: 1px solid rgba(17, 17, 15, .3); }
.ax-callout-head p { margin: 0; font-family: var(--latin); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.ax-callout-head p:first-child span { display: inline-block; margin-right: 10px; padding: 3px 8px; color: var(--acid); background: var(--black); border-radius: 50px; }
.ax-callout-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(60px, 10vw, 165px); align-items: end; margin-top: clamp(60px, 8vw, 120px); }
.ax-callout-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(50px, 7.4vw, 120px); font-weight: 500; line-height: .9; letter-spacing: -.065em; }
.ax-callout-copy h2 em { color: var(--orange); font-style: normal; }
.ax-callout-copy > p { max-width: 680px; margin: 40px 0 0; font-size: clamp(16px, 1.4vw, 21px); }
.ax-callout-copy > a { width: min(100%, 330px); display: flex; align-items: center; justify-content: space-between; margin-top: 44px; padding: 16px 18px; color: var(--paper-bright); background: var(--black); border-radius: 100px; font-size: 12px; }
.ax-capabilities { border-top: 1px solid rgba(17, 17, 15, .4); }
.ax-capabilities p { display: grid; grid-template-columns: 34px 1fr; margin: 0; padding: 22px 0; border-bottom: 1px solid rgba(17, 17, 15, .3); }
.ax-capabilities p > span { grid-row: 1 / 3; font-family: var(--latin); font-size: 9px; }
.ax-capabilities strong { font-size: clamp(17px, 1.6vw, 24px); }
.ax-capabilities small { margin-top: 4px; font-size: 11px; font-weight: 400; opacity: .58; }

.page-hero {
    position: relative;
    min-height: 64svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 150px clamp(22px, 4vw, 64px) clamp(50px, 6vw, 92px);
    color: var(--paper-bright);
    background: var(--black);
}
.page-hero::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 58%; background: linear-gradient(90deg, var(--black), transparent 45%), url("/res/new_a/hero-ax-v2.webp") 62% 50% / cover no-repeat; opacity: .16; filter: grayscale(.2); }
.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
    background-size: 12.5vw 100%, 12.5vw 100%;
}
.page-hero::after {
    content: "";
    position: absolute;
    right: -7vw;
    bottom: -20vw;
    width: 48vw;
    height: 48vw;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
}
.page-hero-copy { position: relative; z-index: 2; width: 100%; }
.page-hero-copy > p { margin: 0 0 clamp(28px, 4vw, 60px); font-family: var(--latin); font-size: 11px; letter-spacing: .2em; }
.page-hero-copy h1 { margin: 0; font-family: var(--display); font-size: clamp(85px, 15.5vw, 240px); font-weight: 500; line-height: .72; letter-spacing: -.085em; }
.page-hero-copy h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .88); }
.page-hero-copy > div { display: flex; gap: 30px; margin-top: clamp(28px, 4vw, 54px); font-family: var(--latin); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.page-hero-side { position: absolute; z-index: 2; right: clamp(22px, 4vw, 64px); bottom: clamp(50px, 6vw, 92px); margin: 0; font-family: var(--latin); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }

.home-intro { background: var(--paper); }
.home-intro > .section-label { margin-bottom: clamp(54px, 8vw, 120px); }
.home-statement { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(40px, 8vw, 130px); align-items: end; margin-bottom: clamp(80px, 11vw, 165px); }
.home-statement h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 8.2vw, 132px); font-weight: 500; line-height: .89; letter-spacing: -.065em; }
.home-statement h2 em { color: var(--orange); font-style: normal; }
.home-statement p { max-width: 460px; margin: 0; font-size: clamp(16px, 1.5vw, 22px); font-weight: 300; }
.portal-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.portal-card { position: relative; min-height: 330px; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 48px); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: color .3s, background .3s; }
.portal-card > span { font-family: var(--latin); font-size: 9px; letter-spacing: .16em; }
.portal-card strong { margin-top: auto; font-size: clamp(35px, 4.8vw, 76px); font-weight: 500; line-height: 1; letter-spacing: -.05em; }
.portal-card p { max-width: 370px; margin: 18px 45px 0 0; color: rgba(17, 17, 15, .58); font-size: 13px; }
.portal-card b { position: absolute; right: clamp(26px, 3vw, 48px); bottom: clamp(26px, 3vw, 48px); width: 44px; height: 44px; display: grid; place-content: center; border: 1px solid currentColor; border-radius: 50%; font-weight: 400; transition: transform .3s; }
.portal-card:hover { color: var(--paper-bright); background: var(--black); }
.portal-card:hover p { color: rgba(255, 255, 255, .62); }
.portal-card:hover b { transform: rotate(45deg); }
.portal-card-accent { color: var(--paper-bright); background: var(--orange); }
.portal-card-accent p { color: rgba(255, 255, 255, .75); }
.portal-card-accent:hover { color: var(--black); background: var(--acid); }
.portal-card-accent:hover p { color: rgba(17, 17, 15, .62); }

.home-work { color: var(--ink); background: var(--paper-bright); }
.home-work-head { display: grid; grid-template-columns: minmax(150px, 1fr) 3fr; gap: 32px; align-items: start; margin-bottom: clamp(64px, 9vw, 130px); }
.home-work-head > div { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.home-work-head h2 { margin: 0; font-family: var(--display); font-size: clamp(49px, 7vw, 112px); font-weight: 500; line-height: .92; letter-spacing: -.06em; }
.home-work-head h2 em { color: var(--orange); font-style: normal; }
.home-work-head a { min-width: 180px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; padding: 12px 0; font-size: 12px; border-bottom: 1px solid var(--line-dark); }
.featured-work-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); grid-template-rows: repeat(2, minmax(300px, 1fr)); gap: clamp(16px, 2vw, 32px); }
.featured-work-card { min-width: 0; display: flex; flex-direction: column; }
.featured-work-card:first-child { grid-row: 1 / 3; }
.featured-work-image { position: relative; min-height: 0; flex: 1; overflow: hidden; background: #cac7bd; }
.featured-work-card:first-child .featured-work-image { aspect-ratio: 4 / 3; }
.featured-work-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2) saturate(.75); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s; }
.featured-work-image > span { position: absolute; top: 16px; left: 16px; padding: 6px 10px; color: #fff; background: rgba(17, 17, 15, .74); border-radius: 100px; font-family: var(--latin); font-size: 8px; letter-spacing: .13em; backdrop-filter: blur(8px); }
.featured-work-card > div:last-child { display: grid; grid-template-columns: 1fr auto; gap: 5px 20px; align-items: start; padding-top: 16px; }
.featured-work-card h3 { margin: 0; font-family: var(--display); font-size: clamp(22px, 2.4vw, 38px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.featured-work-card p { grid-column: 1; margin: 0; color: rgba(17, 17, 15, .52); font-family: var(--latin); font-size: 10px; letter-spacing: .06em; }
.featured-work-card time { grid-column: 2; grid-row: 1; font-family: var(--latin); font-size: 10px; }
.featured-work-card:hover .featured-work-image img { transform: scale(1.035); filter: grayscale(0) saturate(1); }
.featured-work-card-acid { min-height: 300px; padding: clamp(24px, 3vw, 44px); color: var(--black); background: var(--acid); }
.featured-work-card-acid .featured-work-type { display: grid; grid-template-columns: 1fr auto; align-items: start; flex: 1; }
.featured-work-type > span { width: 48px; height: 24px; display: grid; place-content: center; color: var(--acid); background: var(--black); border-radius: 100px; font-family: var(--latin); font-size: 8px; }
.featured-work-type strong { grid-column: 2; grid-row: 1 / 3; align-self: center; font-family: var(--display); font-size: clamp(100px, 13vw, 190px); font-weight: 500; line-height: .7; letter-spacing: -.1em; }
.featured-work-type p { align-self: end; color: rgba(17, 17, 15, .7); font-family: var(--display); font-size: clamp(15px, 1.5vw, 21px); line-height: 1.25; }
.featured-work-card-acid > div:last-child { border-top: 1px solid rgba(17, 17, 15, .25); }

.section { padding: clamp(96px, 12vw, 190px) clamp(22px, 4vw, 64px); }
.section-head { display: grid; grid-template-columns: minmax(150px, 1fr) 3fr; align-items: start; gap: 32px; margin-bottom: clamp(70px, 9vw, 138px); }
.section-head > p, .section-label { margin: 8px 0 0; font-family: var(--latin); font-size: 12px; letter-spacing: .14em; }
.section-head > p span, .section-label span { display: inline-grid; width: 25px; height: 25px; place-items: center; margin-right: 12px; border: 1px solid currentColor; border-radius: 50%; font-size: 9px; }
.section-head h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 7.3vw, 118px); font-weight: 500; line-height: .96; letter-spacing: -.055em; }
.section-head h2 em, .contact-intro h2 em { color: var(--orange); font-style: normal; }
.mini-title { margin: 0; font-family: var(--latin); font-size: 10px; letter-spacing: .18em; }

.about-section { background: var(--paper); }
.manifesto-grid { display: grid; grid-template-columns: minmax(280px, .95fr) 1.4fr; gap: clamp(40px, 9vw, 150px); align-items: start; }
.manifesto-image { position: sticky; top: 110px; margin: 0; }
.manifesto-image img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; filter: grayscale(1) contrast(1.12); }
.manifesto-image figcaption { margin-top: 12px; font-family: var(--latin); font-size: 10px; letter-spacing: .12em; }
.manifesto-copy { font-size: clamp(18px, 1.7vw, 26px); font-weight: 300; line-height: 1.8; }
.manifesto-copy p { max-width: 820px; margin: 0 0 2em; }
.manifesto-copy .lead { font-size: clamp(26px, 3vw, 46px); line-height: 1.4; letter-spacing: -.03em; }
.manifesto-copy strong { font-weight: 600; }
.manifesto-copy blockquote { margin: 2.2em 0; padding: 0 0 0 clamp(20px, 3vw, 48px); font-size: clamp(28px, 4.6vw, 72px); font-weight: 600; line-height: 1.22; letter-spacing: -.045em; border-left: 2px solid var(--orange); }
.manifesto-copy .signature { font-family: var(--display); font-size: clamp(21px, 2.3vw, 36px); font-weight: 500; line-height: 1.45; }

.company-history { display: grid; grid-template-columns: 1fr 3fr; gap: 32px; margin: clamp(110px, 16vw, 240px) 0; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.company-history ol { margin: 0; padding: 0; list-style: none; }
.company-history li { display: grid; grid-template-columns: minmax(95px, .7fr) 2.3fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line-dark); }
.company-history time { font-family: var(--latin); font-size: 13px; }
.company-history span { font-size: clamp(17px, 1.5vw, 23px); }

.principles { margin-bottom: clamp(110px, 16vw, 240px); padding-top: 24px; border-top: 1px solid var(--line-dark); }
.principles-head { display: grid; grid-template-columns: 1fr 3fr; gap: 32px; margin-bottom: clamp(55px, 7vw, 100px); }
.principles-head h3 { margin: 0; font-family: var(--display); font-size: clamp(46px, 6vw, 94px); font-weight: 500; line-height: .95; letter-spacing: -.055em; }
.principles-head h3 em { color: var(--orange); font-style: normal; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.principles-grid article { min-height: 330px; display: flex; flex-direction: column; padding: clamp(25px, 3vw, 44px); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: color .3s, background .3s; }
.principles-grid article > span { font-family: var(--latin); font-size: 10px; }
.principles-grid h4 { margin: auto 0 25px; font-family: var(--display); font-size: clamp(27px, 3vw, 48px); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.principles-grid p { margin: 0; color: rgba(17, 17, 15, .62); font-size: 14px; }
.principles-grid article:hover { color: var(--paper-bright); background: var(--black); }
.principles-grid article:hover p { color: rgba(255, 255, 255, .62); }

.founder { display: grid; grid-template-columns: minmax(280px, 1fr) 1.6fr; gap: clamp(40px, 8vw, 130px); align-items: start; }
.founder-photo { position: relative; }
.founder-photo img { width: 100%; min-height: 460px; object-fit: cover; filter: grayscale(1) contrast(1.1); }
.founder-photo > div { position: absolute; right: 18px; bottom: 18px; left: 18px; display: flex; justify-content: space-between; padding: 15px 18px; color: #fff; background: rgba(17, 17, 15, .82); backdrop-filter: blur(8px); }
.founder-photo span { font-family: var(--latin); font-size: 9px; letter-spacing: .15em; }
.founder-photo strong { font-size: 13px; }
.profile-intro { padding-bottom: 34px; border-bottom: 1px solid var(--line-dark); }
.profile-intro h3 { margin: 30px 0 5px; font-size: clamp(34px, 4vw, 64px); line-height: 1; }
.profile-intro h3 small { font-family: var(--latin); font-size: 12px; font-weight: 400; }
.profile-intro > p:last-child { margin: 12px 0 0; color: rgba(17, 17, 15, .6); }
.career-list p { display: grid; grid-template-columns: 170px 1fr; gap: 20px; margin: 0; padding: 21px 0; border-bottom: 1px solid var(--line-dark); }
.career-list time, .profile-details time { font-family: var(--latin); font-size: 11px; letter-spacing: .05em; }
.profile-details { border-bottom: 1px solid var(--line-dark); }
.profile-details summary { display: flex; justify-content: space-between; padding: 24px 0; cursor: pointer; font-weight: 600; list-style: none; }
.profile-details summary::-webkit-details-marker { display: none; }
.profile-details summary span { font-size: 22px; font-weight: 300; transition: transform .25s; }
.profile-details[open] summary span { transform: rotate(45deg); }
.profile-details > div { padding: 0 0 28px; }
.profile-details > div p { display: grid; grid-template-columns: 80px 1fr; margin: 0; padding: 8px 0; color: rgba(17, 17, 15, .72); font-size: 13px; }
.profile-details .qualifications { display: block; margin-top: 24px; padding-top: 24px; line-height: 1.9; border-top: 1px solid var(--line-dark); }

.services-section { color: var(--paper-bright); background: var(--black); }
.section-head-light h2 em { color: var(--acid); }
.services-list { border-top: 1px solid var(--line-light); }
.service-card {
    position: relative;
    min-height: 190px;
    display: grid;
    grid-template-columns: 70px minmax(220px, .8fr) 1.25fr 130px;
    gap: 26px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--line-light);
    overflow: hidden;
}
.service-card[id] { scroll-margin-top: 90px; }
.ax-service { min-height: 260px; background: linear-gradient(90deg, rgba(221, 255, 67, .12), transparent 70%); }
.ax-service .service-main h3 { color: var(--acid); }
.ax-service .service-visual { left: 29%; width: min(32vw, 470px); opacity: .32; transform: translate(-50%, -50%) rotate(-2deg) scale(.95); }
.service-card.ax-service:hover .service-visual { opacity: .78; transform: translate(-50%, -50%) rotate(0) scale(1); }
.ax-service > a { width: 145px; color: var(--black); background: var(--acid); border-color: var(--acid); }
.service-visual {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 24%;
    width: min(24vw, 340px);
    height: 155%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-7deg) scale(.85);
    transition: opacity .35s, transform .45s;
    pointer-events: none;
}
.service-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); }
.service-letter { display: grid; place-content: center; color: var(--black); background: var(--acid); font-family: var(--display); font-size: 150px; font-weight: 600; line-height: 1; }
.service-card:hover .service-visual { opacity: .92; transform: translate(-50%, -50%) rotate(-3deg) scale(1); }
.service-number, .service-main, .service-description, .service-card > a { position: relative; z-index: 1; }
.service-number { align-self: start; font-family: var(--latin); font-size: 11px; }
.service-main p { margin: 0 0 8px; color: rgba(255, 255, 255, .45); font-family: var(--latin); font-size: 9px; letter-spacing: .16em; }
.service-main h3 { margin: 0; font-size: clamp(30px, 3.7vw, 58px); font-weight: 500; line-height: 1.05; letter-spacing: -.04em; }
.service-description { max-width: 600px; margin: 0; color: rgba(255, 255, 255, .65); font-weight: 300; }
.service-card > a { justify-self: end; width: 116px; height: 44px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 100px; font-size: 11px; transition: color .25s, background .25s; }
.service-card > a:hover { color: var(--black); background: var(--acid); border-color: var(--acid); }

.service-process { background: var(--paper-bright); }
.service-process .section-head h2 em { color: var(--orange); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.process-card { min-height: 380px; display: flex; flex-direction: column; padding: clamp(24px, 2.6vw, 40px); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: color .3s, background .3s; }
.process-card > span, .process-card small { font-family: var(--latin); font-size: 9px; letter-spacing: .12em; }
.process-card h3 { margin: auto 0 24px; font-size: clamp(33px, 3.7vw, 58px); font-weight: 500; line-height: 1; }
.process-card p { margin: 0 0 28px; color: rgba(17, 17, 15, .62); font-size: 14px; }
.process-card small { color: rgba(17, 17, 15, .48); }
.process-card:hover { color: var(--black); background: var(--acid); }
.process-card:hover p, .process-card:hover small { color: rgba(17, 17, 15, .72); }
.ax-use-cases { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 145px); margin-top: clamp(100px, 14vw, 210px); padding: clamp(50px, 7vw, 100px); color: var(--paper-bright); background: var(--black); }
.ax-use-intro h3 { margin: 42px 0 26px; font-family: var(--display); font-size: clamp(40px, 5.3vw, 84px); font-weight: 500; line-height: .96; letter-spacing: -.055em; }
.ax-use-intro h3 em { color: var(--acid); font-style: normal; }
.ax-use-intro > p:not(.mini-title) { max-width: 590px; color: rgba(255, 255, 255, .62); font-weight: 300; }
.ax-use-intro > a { width: min(100%, 300px); display: flex; align-items: center; justify-content: space-between; margin-top: 42px; padding: 14px 16px; color: var(--black); background: var(--acid); border-radius: 100px; font-size: 12px; }
.ax-use-list { align-self: end; border-top: 1px solid var(--line-light); }
.ax-use-list article { display: grid; grid-template-columns: 38px 1fr; padding: 26px 0; border-bottom: 1px solid var(--line-light); }
.ax-use-list span { grid-row: 1 / 3; color: var(--acid); font-family: var(--latin); font-size: 10px; }
.ax-use-list h4 { margin: 0; font-size: clamp(20px, 2vw, 30px); font-weight: 500; }
.ax-use-list p { margin: 7px 0 0; color: rgba(255, 255, 255, .52); font-size: 12px; }

.work-section { background: var(--paper-bright); }
.work-heading { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.work-heading .section-head { display: block; }
.work-heading .section-head > p { margin-bottom: 50px; }
.work-heading > p { margin: 0 0 clamp(70px, 9vw, 138px); font-family: var(--latin); font-size: 11px; line-height: 1.6; text-align: right; letter-spacing: .12em; text-transform: uppercase; }
.work-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 40px; padding-bottom: 16px; border-bottom: 1px solid var(--line-dark); }
.work-filters { min-width: 0; display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.work-filters::-webkit-scrollbar { display: none; }
.work-filters button { flex: 0 0 auto; padding: 8px 15px; border: 1px solid var(--line-dark); border-radius: 100px; background: transparent; font-family: var(--latin); font-size: 10px; cursor: pointer; transition: color .2s, background .2s; }
.work-filters button:hover, .work-filters button.active { color: var(--paper-bright); background: var(--black); }
.work-count { flex: 0 0 auto; margin: 0; font-family: var(--latin); font-size: 9px; letter-spacing: .13em; }
.work-count strong { color: var(--orange); font-size: 18px; font-weight: 500; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(34px, 5vw, 78px) clamp(16px, 2.2vw, 38px); }
.work-card { min-width: 0; }
.work-card:nth-child(9n + 1) { grid-column: span 2; }
.work-card:nth-child(9n + 1) .work-image { aspect-ratio: 16 / 9; }
.work-card.hidden { display: none; }
.work-card a, .work-card-inner { display: block; }
.work-image { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: #cbc8bd; }
.work-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) saturate(.78); transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .35s; }
.work-image b { position: absolute; top: 12px; left: 12px; min-width: 32px; height: 32px; display: grid; place-content: center; color: #fff; background: rgba(17, 17, 15, .72); border-radius: 50%; font-family: var(--latin); font-size: 9px; font-weight: 400; backdrop-filter: blur(6px); }
.work-source { position: absolute; top: 13px; right: 13px; padding: 7px 10px; color: #fff; background: rgba(17, 17, 15, .72); border: 1px solid rgba(255, 255, 255, .22); border-radius: 100px; font-family: var(--latin); font-size: 7px; letter-spacing: .11em; backdrop-filter: blur(8px); }
.work-view { position: absolute; right: 13px; bottom: 13px; padding: 7px 10px; color: var(--black); background: var(--acid); border-radius: 100px; font-family: var(--latin); font-size: 8px; letter-spacing: .1em; opacity: 0; transform: translateY(7px); transition: opacity .3s, transform .3s; }
.work-card:hover .work-image img { transform: scale(1.045); filter: grayscale(0) saturate(1); }
.work-card:hover .work-view, .work-card:focus-within .work-view { opacity: 1; transform: none; }
.work-placeholder { display: grid; place-content: center; color: var(--paper-bright); background: var(--orange); }
.work-placeholder > span:not(.work-view) { font-family: var(--display); font-size: clamp(43px, 6vw, 84px); font-weight: 600; line-height: .78; letter-spacing: -.07em; }
.work-meta { display: flex; justify-content: space-between; gap: 18px; margin-top: 14px; }
.work-meta h3 { margin: 0; font-family: var(--display); font-size: clamp(18px, 1.8vw, 27px); font-weight: 500; line-height: 1.1; text-transform: uppercase; }
.work-meta p { margin: 5px 0 0; color: rgba(17, 17, 15, .56); font-size: 12px; }
.work-meta time { width: 54px; height: 54px; flex: 0 0 54px; display: grid; place-items: center; padding: 0; color: var(--paper-bright); background: var(--orange); border-radius: 50%; font-family: var(--latin); font-size: 10px; line-height: 1; }

.contact-section { position: relative; display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(60px, 10vw, 160px); color: var(--paper-bright); background: linear-gradient(135deg, #ff5b35 0%, #f14625 100%); }
.contact-intro { align-self: start; }
.contact-intro h2 { margin: 48px 0 34px; font-family: var(--display); font-size: clamp(49px, 6.5vw, 102px); font-weight: 500; line-height: .94; letter-spacing: -.055em; }
.contact-intro h2 em { color: var(--black); }
.contact-intro > p:not(.section-label) { font-size: clamp(16px, 1.5vw, 22px); font-weight: 300; }
.contact-intro > a { display: inline-flex; gap: 28px; margin-top: 55px; padding-bottom: 5px; font-family: var(--display); font-size: clamp(20px, 2.2vw, 34px); border-bottom: 1px solid currentColor; }
.contact-form { align-self: start; padding-top: 6px; }
.contact-form fieldset { margin: 0 0 50px; padding: 0; border: 0; }
.contact-form legend { margin-bottom: 18px; font-size: 12px; font-weight: 600; }
.option-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.option-grid label { cursor: pointer; }
.option-grid input { position: absolute; opacity: 0; pointer-events: none; }
.option-grid span { display: block; padding: 10px 15px; border: 1px solid rgba(255, 255, 255, .55); border-radius: 100px; font-size: 12px; transition: color .2s, background .2s, border-color .2s; }
.option-grid input:checked + span { color: var(--paper-bright); background: var(--black); border-color: var(--black); }
.option-grid input:focus-visible + span { outline: 2px solid var(--black); outline-offset: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form > label, .form-row label { display: grid; gap: 10px; font-size: 11px; font-weight: 600; }
.contact-form label small { justify-self: end; margin-top: -28px; color: rgba(255, 255, 255, .6); font-size: 9px; font-weight: 400; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px 0; color: var(--paper-bright); background: transparent; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .6); border-radius: 0; outline: none; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, .58); font-weight: 300; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--black); }
.message-label { margin-top: 32px; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 38px; }
.form-actions button { min-height: 54px; padding: 0 20px; border-radius: 100px; cursor: pointer; }
.submit-button { min-width: 235px; display: flex; align-items: center; justify-content: space-between; color: var(--paper-bright); background: var(--black); border: 1px solid var(--black); }
.chat-button { background: transparent; border: 1px solid rgba(255, 255, 255, .65); }
.form-note { margin: 12px 0 0; color: rgba(255, 255, 255, .7); font-size: 11px; }
.form-row-secondary { margin-top: 30px; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { margin-bottom: 30px; padding: 16px 18px; border: 1px solid rgba(255, 255, 255, .5); font-size: 13px; }
.form-status.is-success { color: var(--black); background: var(--acid); border-color: var(--acid); }
.form-status.is-error { color: var(--paper-bright); background: rgba(17, 17, 15, .22); }
.submit-button:disabled { cursor: wait; opacity: .72; }

.contact-next { color: var(--ink); background: var(--paper-bright); }
.contact-next-head { display: grid; grid-template-columns: minmax(150px, 1fr) 3fr; gap: 32px; margin-bottom: clamp(65px, 9vw, 130px); }
.contact-next-head h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 7vw, 112px); font-weight: 500; line-height: .94; letter-spacing: -.06em; }
.contact-next-head h2 em { color: var(--orange); font-style: normal; }
.contact-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); list-style: none; }
.contact-steps li { min-height: 320px; display: grid; grid-template-columns: 35px 1fr; padding: clamp(24px, 3vw, 44px); border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.contact-steps li > span { font-family: var(--latin); font-size: 10px; }
.contact-steps li > div { align-self: end; }
.contact-steps strong { color: var(--orange); font-family: var(--latin); font-size: 9px; letter-spacing: .13em; }
.contact-steps h3 { margin: 10px 0 20px; font-size: clamp(27px, 3vw, 46px); font-weight: 500; line-height: 1; }
.contact-steps p { margin: 0; color: rgba(17, 17, 15, .6); font-size: 14px; }

.project-cta { position: relative; overflow: hidden; padding: clamp(76px, 9vw, 140px) clamp(22px, 4vw, 64px) clamp(65px, 7vw, 110px); color: var(--black); background: var(--acid); }
.project-cta::after { content: "PIIRRA"; position: absolute; right: -2vw; bottom: -5vw; color: transparent; font-family: var(--display); font-size: clamp(150px, 27vw, 430px); font-weight: 600; line-height: .65; letter-spacing: -.1em; -webkit-text-stroke: 1px rgba(17, 17, 15, .13); pointer-events: none; }
.project-cta-top, .project-cta-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 30px; padding-bottom: 18px; border-bottom: 1px solid rgba(17, 17, 15, .32); }
.project-cta-top p { margin: 0; font-family: var(--latin); font-size: 9px; letter-spacing: .13em; }
.project-cta-top span { margin-right: 20px; padding: 4px 9px; color: var(--acid); background: var(--black); border-radius: 100px; }
.project-cta-link { position: relative; z-index: 1; display: block; margin: clamp(48px, 6vw, 90px) 0; font-family: var(--display); font-size: clamp(66px, 13vw, 205px); font-weight: 500; line-height: .72; letter-spacing: -.075em; }
.project-cta-link span { display: block; }
.project-cta-link span:nth-child(2) { margin-left: 11vw; color: transparent; -webkit-text-stroke: 1.5px var(--black); }
.project-cta-link i { position: absolute; right: 1vw; top: 50%; width: clamp(62px, 8vw, 118px); aspect-ratio: 1; display: grid; place-content: center; color: var(--paper-bright); background: var(--black); border-radius: 50%; font-size: clamp(23px, 3vw, 46px); font-style: normal; transform: translateY(-50%); transition: transform .35s; }
.project-cta-link:hover i { transform: translateY(-50%) rotate(45deg); }
.project-cta-bottom { align-items: end; padding: 18px 0 0; border-top: 1px solid rgba(17, 17, 15, .32); border-bottom: 0; }
.project-cta-bottom p, .project-cta-bottom strong { margin: 0; }
.project-cta-bottom p { font-size: 12px; }
.project-cta-bottom strong { font-size: clamp(16px, 1.6vw, 23px); }

.site-footer { padding: 7vw clamp(22px, 4vw, 64px) 28px; color: var(--paper-bright); background: var(--black); overflow: hidden; }
.footer-contact { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(70px, 9vw, 135px); padding-bottom: 20px; border-bottom: 1px solid var(--line-light); }
.footer-contact p { margin: 0; color: rgba(255, 255, 255, .45); font-family: var(--latin); font-size: 9px; letter-spacing: .14em; }
.footer-contact a { display: inline-flex; gap: 35px; font-family: var(--display); font-size: clamp(21px, 3vw, 48px); line-height: 1; }
.footer-mark { display: block; margin-left: -.07em; font-family: var(--display); font-size: clamp(105px, 24vw, 380px); font-weight: 600; line-height: .74; letter-spacing: -.09em; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 6vw; padding-top: 20px; border-top: 1px solid var(--line-light); }
.footer-bottom p, .footer-bottom a { margin: 0; font-family: var(--latin); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .home-statement { grid-template-columns: 1fr; }
    .ax-callout-grid { grid-template-columns: 1fr; }
    .home-work-head > div { grid-template-columns: 1fr; }
    .home-work-head a { width: min(100%, 260px); }
    .featured-work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
    .featured-work-card:first-child { grid-column: 1 / -1; grid-row: auto; }
    .featured-work-card:first-child .featured-work-image { aspect-ratio: 16 / 9; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .ax-use-cases { grid-template-columns: 1fr; }
    .service-card { grid-template-columns: 50px minmax(180px, .7fr) 1fr 110px; gap: 18px; }
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .work-card:nth-child(9n + 1) { grid-column: span 2; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-intro { display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; }
    .contact-intro .section-label, .contact-intro h2 { grid-column: 1 / -1; }
    .contact-intro > a { justify-self: end; align-self: end; }
}

@media (max-width: 760px) {
    .site-header { height: 66px; padding-inline: 18px; }
    .site-header.menu-active { color: #fff; background: transparent; border-color: var(--line-light); }
    .site-header.menu-active .brand::after { background: #fff; }
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .brand { width: 105px; }
    .hero-copy { padding: 130px 20px 82px; }
    .hero-kicker { margin-bottom: 8vh; }
    .hero h1 { font-size: clamp(64px, 20vw, 118px); line-height: .82; }
    .hero h1 span:nth-child(2) { padding-left: 0; text-align: right; }
    .hero h1 span:nth-child(3) { text-align: left; }
    .hero-index { top: 90px; right: 20px; }
    .hero-art-note { display: none; }
    .hero-bottom { align-items: center; }
    .hero-bottom > p { max-width: 240px; font-size: 13px; }
    .round-link { width: 70px; height: 70px; }
    .page-hero { min-height: 56svh; padding: 125px 20px 55px; }
    .page-hero-copy h1 { font-size: clamp(72px, 25vw, 130px); line-height: .76; }
    .page-hero-copy > div { max-width: 80%; flex-wrap: wrap; gap: 8px 22px; }
    .page-hero-side { display: none; }
    .section { padding: 94px 20px; }
    .portal-grid { grid-template-columns: 1fr; }
    .portal-card { min-height: 245px; }
    .home-work-head, .principles-head, .contact-next-head { grid-template-columns: 1fr; }
    .home-work-head > .section-label, .principles-head > .mini-title, .contact-next-head > .section-label { margin-bottom: 20px; }
    .featured-work-grid { grid-template-columns: 1fr; }
    .featured-work-card:first-child { grid-column: auto; }
    .featured-work-card:first-child .featured-work-image, .featured-work-image { aspect-ratio: 5 / 4; }
    .featured-work-card-acid { min-height: 330px; }
    .ax-callout { padding-inline: 20px; }
    .ax-callout-head { align-items: flex-start; flex-direction: column; }
    .section-head { display: block; }
    .section-head > p { margin-bottom: 36px; }
    .manifesto-grid, .company-history, .founder { grid-template-columns: 1fr; }
    .manifesto-image { position: relative; top: auto; }
    .manifesto-image img { aspect-ratio: 4 / 3; }
    .manifesto-copy blockquote { margin: 1.8em 0; }
    .company-history { gap: 28px; }
    .principles-grid, .process-grid, .contact-steps { grid-template-columns: 1fr; }
    .principles-grid article, .process-card, .contact-steps li { min-height: 270px; }
    .founder-photo img { min-height: 0; aspect-ratio: 1 / 1.05; }
    .career-list p { grid-template-columns: 130px 1fr; }
    .service-card { min-height: 0; grid-template-columns: 38px 1fr auto; gap: 16px; padding: 28px 0; }
    .service-main { grid-column: 2; }
    .service-description { grid-column: 2 / -1; }
    .service-card > a { grid-column: 2 / -1; justify-self: start; }
    .service-visual { left: 69%; width: 240px; opacity: .15; }
    .service-card:hover .service-visual { opacity: .25; }
    .ax-service .service-visual { left: 74%; opacity: .22; }
    .work-heading { grid-template-columns: 1fr; }
    .work-heading > p { display: none; }
    .work-toolbar { align-items: flex-start; flex-direction: column; }
    .work-filters { width: 100%; }
    .work-grid { gap: 42px 14px; }
    .work-meta { gap: 8px; }
    .work-meta h3 { font-size: 17px; }
    .contact-intro { display: block; }
    .contact-intro > a { margin-top: 28px; }
    .form-row { grid-template-columns: 1fr; gap: 26px; }
    .ax-use-cases { margin-inline: -20px; padding: 75px 20px; }
    .project-cta-top, .project-cta-bottom { align-items: flex-start; flex-direction: column; }
    .project-cta-top p:last-child { display: none; }
    .project-cta-link { font-size: 18vw; line-height: .78; }
    .project-cta-link span:nth-child(2) { margin-left: 0; }
    .project-cta-link i { position: relative; top: auto; right: auto; width: 72px; margin-top: 35px; transform: none; }
    .project-cta-link:hover i { transform: rotate(45deg); }
    .footer-contact { align-items: flex-start; flex-direction: column; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 19vw; }
    .work-grid { grid-template-columns: 1fr; }
    .work-card:nth-child(9n + 1) { grid-column: span 1; }
    .work-card:nth-child(9n + 1) .work-image { aspect-ratio: 5 / 4; }
    .work-image { aspect-ratio: 5 / 4; }
    .founder-photo > div { align-items: flex-start; flex-direction: column; gap: 5px; }
    .career-list p { grid-template-columns: 1fr; gap: 5px; }
    .page-hero-copy h1 { font-size: 23vw; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
