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

* {
    margin: 0;
}

:root {
    --bg: #080a0d;
    --bg-soft: #0d1015;
    --panel: #11151b;
    --panel-2: #151a22;
    --text: #f4f7fb;
    --muted: #a8afbb;
    --subtle: #757e8e;
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .16);
    --cyan: #35d4e8;
    --blue: #72a7ff;
    --violet: #a58bff;
    --green: #4ade80;
    --cream: #eff2f5;
    --ink: #101318;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow: 0 24px 80px rgba(0, 0, 0, .35);
    --ease: cubic-bezier(.2, .8, .2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    background: var(--bg);
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

a {
    color: inherit;
}

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

::selection {
    background: rgba(53, 212, 232, .28);
    color: #fff;
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    padding: 10px 16px;
    border-radius: 8px;
    background: #fff;
    color: #080a0d;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 10% 5%, rgba(53, 212, 232, .08), transparent 70%),
        radial-gradient(ellipse 52% 36% at 92% 22%, rgba(165, 139, 255, .07), transparent 72%),
        linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
    background-size: auto, auto, 72px 72px, 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 38%);
}

main, .site-footer {
    position: relative;
    z-index: 1;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 10, 13, .82);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.035em;
    text-decoration: none;
}

.brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.brand > span > span {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3px;
    list-style: none;
    padding: 0;
}

.nav-links a {
    display: block;
    padding: 8px 13px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color .18s ease, background .18s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, .05);
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: -.01em;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, color .2s ease;
}

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

.button-small {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 12px;
}

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

.button-light:hover {
    background: #dfe5eb;
}

.button-outline {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .025);
    color: var(--text);
}

.button-outline:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .065);
}

.button-accent {
    background: var(--cyan);
    color: #071014;
}

.button-accent:hover {
    background: #67e3f2;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: rgba(255, 255, 255, .035);
    color: var(--text);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 17px;
    height: 1.5px;
    margin: 4px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .2s ease;
}

.menu-button.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    padding: 8px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(14, 17, 22, .98);
    box-shadow: var(--shadow);
}

.mobile-nav.open {
    display: grid;
}

.mobile-nav a {
    padding: 13px 14px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, .05);
    color: var(--text);
}

.mobile-nav a:last-child {
    margin-top: 6px;
    background: var(--text);
    color: var(--ink);
    text-align: center;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    visibility: hidden;
    background: rgba(0, 0, 0, .58);
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease;
}

.nav-backdrop.open {
    visibility: visible;
    opacity: 1;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding: 138px 0 82px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: 76px;
}

.eyebrow {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-copy > .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.hero-copy > .eyebrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px var(--cyan);
}

.hero h1 {
    max-width: 740px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.4vw, 5.5rem);
    font-weight: 650;
    letter-spacing: -.062em;
    line-height: .99;
}

.hero h1 em {
    display: block;
    background: linear-gradient(120deg, var(--cyan) 5%, var(--blue) 48%, var(--violet) 92%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-style: normal;
}

.hero-lede {
    max-width: 625px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 52px;
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero-signals li {
    display: grid;
    min-width: 135px;
    padding-right: 30px;
}

.hero-signals strong {
    font-size: 20px;
    letter-spacing: -.035em;
    line-height: 1;
}

.hero-signals span {
    margin-top: 7px;
    color: var(--subtle);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-product {
    position: relative;
}

.browser-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 19px;
    background: var(--panel);
    box-shadow: 0 35px 100px rgba(0, 0, 0, .5), 0 0 70px rgba(53, 212, 232, .07);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.browser-bar {
    display: flex;
    align-items: center;
    height: 42px;
    gap: 6px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    background: #0e1218;
}

.browser-bar > span, .code-panel-bar > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #38404b;
}

.browser-bar p {
    margin-left: auto;
    color: var(--subtle);
    font-size: 9px;
    letter-spacing: .06em;
}

.browser-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: contain;
}

.floating-proof {
    position: absolute;
    right: -20px;
    bottom: -42px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(330px, 82%);
    gap: 12px;
    padding: 15px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: rgba(18, 23, 30, .96);
    box-shadow: 0 16px 50px rgba(0,0,0,.4);
    color: var(--muted);
    font-size: 12px;
    text-decoration: none;
    transition: transform .2s var(--ease), border-color .2s ease;
}

.floating-proof:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 222, 128, .38);
}

.floating-proof strong {
    display: block;
    color: var(--text);
    font-size: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 16px var(--green);
}

.proof-strip {
    position: relative;
    z-index: 2;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, .018);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(3, 1fr);
    align-items: stretch;
}

.proof-label, .proof-grid a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 104px;
    padding: 22px 28px;
    border-left: 1px solid var(--line);
}

.proof-label {
    padding-left: 0;
    border-left: none;
    color: var(--subtle);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.proof-grid a {
    text-decoration: none;
    transition: background .2s ease;
}

.proof-grid a:hover {
    background: rgba(255, 255, 255, .03);
}

.proof-grid a span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.proof-grid a strong {
    margin-top: 5px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.section {
    position: relative;
    padding: 118px 0;
    border-bottom: 1px solid var(--line);
}

.section[id] {
    scroll-margin-top: 74px;
}

.section-header {
    margin-bottom: 56px;
}

.split-header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
    align-items: end;
    gap: 70px;
}

.section-header .eyebrow {
    margin-bottom: 14px;
}

.section-header h2, .about-statement h2, .now-heading h2, .contact-copy h2 {
    max-width: 750px;
    font-size: clamp(2.15rem, 4vw, 4rem);
    font-weight: 620;
    letter-spacing: -.052em;
    line-height: 1.05;
}

.section-header > p, .principles-header > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.case-list {
    display: grid;
    gap: 22px;
}

.case-study {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    min-height: 590px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,.018), transparent 45%), var(--panel);
    box-shadow: 0 22px 70px rgba(0,0,0,.18);
}

.case-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
}

.case-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--subtle);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status {
    display: inline-flex;
    align-items: center;
    padding: 4px 9px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    line-height: 1.2;
}

.status-live { border-color: rgba(74,222,128,.35); background: rgba(74,222,128,.09); color: #74e59b; }
.status-prototype { border-color: rgba(114,167,255,.35); background: rgba(114,167,255,.09); color: #8db8ff; }
.status-early { border-color: rgba(248,180,145,.35); background: rgba(248,180,145,.09); color: #f3b694; }
.status-alpha { border-color: rgba(53,212,232,.35); background: rgba(53,212,232,.09); color: var(--cyan); }

.product-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.product-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    flex: 0 0 52px;
}

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

.product-mark-lattice {
    padding: 6px;
    background: #0c1512;
}

.product-mark-ilmora {
    padding: 8px;
    background: #0a0d17;
}

.product-mark-whenyouopen {
    padding: 7px;
    background: #f8fafc;
}

.product-mark-amorae {
    padding: 3px;
    background: #fffafb;
}

.case-copy h3 {
    margin-bottom: 0;
    font-size: clamp(2.15rem, 3.8vw, 3.8rem);
    font-weight: 630;
    letter-spacing: -.05em;
    line-height: 1;
}

.product-mark-whenyouopen + h3 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.case-summary {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.case-details {
    display: grid;
    gap: 0;
    margin-top: 28px;
}

.case-details > div {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 13px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.case-details dt {
    color: var(--subtle);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.case-details dd {
    color: #c5cad2;
    font-size: 12px;
    line-height: 1.55;
}

.case-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 26px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    gap: 7px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.text-link span, .small-project a span, .principle a span {
    transition: transform .2s var(--ease);
}

.text-link:hover span, .small-project a:hover span, .principle a:hover span {
    transform: translate(2px, -2px);
}

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

.case-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    overflow: hidden;
    border-left: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 50%, rgba(53, 212, 232, .09), transparent 60%),
        #0b0f14;
}

.case-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 24px 55px rgba(0,0,0,.38);
    transition: transform .45s var(--ease);
}

.case-visual:hover img {
    transform: scale(1.018);
}

.case-visual-first .case-visual {
    order: -1;
    border-right: 1px solid var(--line);
    border-left: 0;
}

.visual-light {
    background: #dfe5e8;
}

.visual-warm {
    background: #201a18;
}

.more-work {
    margin-top: 76px;
}

.more-work-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.more-work-heading .eyebrow {
    margin-bottom: 8px;
}

.more-work-heading h3 {
    font-size: 24px;
    font-weight: 610;
    letter-spacing: -.035em;
}

.small-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.small-project {
    display: flex;
    flex-direction: column;
    min-height: 285px;
    padding: 28px;
    border-top: 1px solid var(--line-strong);
    background: rgba(255,255,255,.018);
    transition: background .2s ease, transform .2s var(--ease);
}

.small-project:hover {
    background: rgba(255,255,255,.035);
    transform: translateY(-3px);
}

.project-number {
    margin-bottom: 40px;
    color: var(--subtle);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.small-project h4 {
    margin-bottom: 9px;
    font-size: 17px;
    letter-spacing: -.025em;
}

.small-project p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 18px 0 24px;
}

.mini-tags span {
    padding: 3px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--subtle);
    font-size: 9px;
    font-weight: 600;
}

.small-project a {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 32px;
    gap: 6px;
    margin-top: auto;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 650;
    text-decoration: none;
}

.research-section {
    background: linear-gradient(180deg, transparent, rgba(114,167,255,.025) 45%, transparent);
}

.praxium-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
    gap: 58px;
    padding: 54px;
    overflow: hidden;
    border: 1px solid rgba(53,212,232,.22);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 86% 10%, rgba(53,212,232,.08), transparent 32%),
        radial-gradient(circle at 12% 100%, rgba(165,139,255,.07), transparent 38%),
        var(--panel);
    box-shadow: var(--shadow);
}

.praxium-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.praxium-copy h3 {
    margin-bottom: 16px;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    font-weight: 630;
    letter-spacing: -.06em;
    line-height: .95;
}

.praxium-copy > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 18px;
    color: #c6cbd3;
    font-size: 12px;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: .62em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(53,212,232,.7);
}

.praxium-copy .case-links {
    gap: 10px;
    margin-top: 34px;
}

.praxium-copy .text-link {
    margin-left: 7px;
}

.code-panel {
    align-self: center;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 16px;
    background: #090c10;
    box-shadow: 0 24px 70px rgba(0,0,0,.4);
}

.code-panel-bar {
    display: flex;
    align-items: center;
    height: 45px;
    gap: 6px;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    background: #0e1217;
}

.code-panel-bar p {
    margin-left: auto;
    color: var(--subtle);
    font-size: 9px;
}

.code-panel pre {
    overflow-x: auto;
    padding: 28px;
    color: #bfc7d2;
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 11px;
    line-height: 1.85;
}

.code-comment { color: #667080; }
.code-accent { color: var(--cyan); }
.code-keyword { color: var(--violet); }
.code-string { color: #85d9a1; }

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

.code-proof span {
    padding: 12px 6px;
    border-left: 1px solid var(--line);
    color: var(--subtle);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.code-proof span:first-child { border-left: 0; }

.research-programs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.research-program {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.018);
}

.program-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    color: var(--subtle);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.program-state {
    color: var(--cyan);
}

.research-program h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 610;
    letter-spacing: -.035em;
}

.research-program > p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.research-program dl {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.research-program dl > div {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.research-program dt {
    color: var(--subtle);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.research-program dd {
    color: #c1c7d0;
    font-size: 11px;
}

.principles-section {
    border-bottom-color: rgba(16,19,24,.16);
    background: var(--cream);
    color: var(--ink);
}

.principles-section .eyebrow {
    color: #09798a;
}

.principles-header > p {
    color: #5a626d;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(16,19,24,.18);
    border-left: 1px solid rgba(16,19,24,.18);
}

.principle {
    min-height: 320px;
    padding: 38px;
    border-right: 1px solid rgba(16,19,24,.18);
    border-bottom: 1px solid rgba(16,19,24,.18);
}

.principle > span {
    display: block;
    margin-bottom: 55px;
    color: #717984;
    font-size: 10px;
    font-weight: 700;
}

.principle h3 {
    margin-bottom: 13px;
    font-size: 24px;
    font-weight: 640;
    letter-spacing: -.035em;
}

.principle p {
    max-width: 480px;
    color: #555e69;
    font-size: 13px;
    line-height: 1.7;
}

.principle a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    gap: 6px;
    margin-top: 28px;
    color: #08788a;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 100px;
}

.about-statement .eyebrow {
    margin-bottom: 18px;
}

.about-copy {
    padding-top: 32px;
}

.about-copy > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.about-copy .about-lede {
    margin-bottom: 22px;
    color: #d6dbe2;
    font-size: 18px;
    line-height: 1.7;
}

.about-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
    border-top: 1px solid var(--line);
}

.collaboration-grid article {
    min-height: 230px;
    padding: 30px 30px 0;
    border-left: 1px solid var(--line);
}

.collaboration-grid article:first-child {
    padding-left: 0;
    border-left: 0;
}

.collaboration-grid span {
    color: var(--subtle);
    font-size: 9px;
    font-weight: 700;
}

.collaboration-grid h3 {
    margin: 58px 0 9px;
    font-size: 18px;
    font-weight: 610;
    letter-spacing: -.025em;
}

.collaboration-grid p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.now-section {
    padding-block: 90px;
    background: var(--bg-soft);
}

.now-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
}

.now-heading .eyebrow {
    margin-bottom: 11px;
}

.now-heading h2 {
    font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.now-heading > p {
    color: var(--subtle);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

.now-grid article {
    min-height: 220px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.018);
}

.now-state {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--subtle);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.now-state::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.now-state.shipped { color: #74e59b; }
.now-state.building { color: var(--cyan); }
.now-state.exploring { color: var(--violet); }

.now-grid h3 {
    margin: 55px 0 9px;
    font-size: 18px;
    font-weight: 610;
    letter-spacing: -.025em;
}

.now-grid p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.contact-section {
    padding-block: 105px;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 5% 5%, rgba(53,212,232,.09), transparent 32%),
        var(--panel);
    box-shadow: var(--shadow);
}

.contact-copy {
    display: flex;
    flex-direction: column;
    padding: 54px;
    border-right: 1px solid var(--line);
}

.contact-copy .eyebrow {
    margin-bottom: 17px;
}

.contact-copy h2 {
    font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.contact-copy > p {
    margin-top: 24px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.contact-details {
    display: grid;
    gap: 18px;
    margin-top: auto;
    padding-top: 48px;
}

.contact-details div {
    display: grid;
    gap: 4px;
}

.contact-details span {
    color: var(--subtle);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-details a, .contact-details strong {
    color: #dce1e7;
    font-size: 12px;
    font-weight: 550;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--cyan);
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 54px;
    background: rgba(5,7,9,.42);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    color: #d3d8df;
    font-size: 11px;
    font-weight: 600;
}

.contact-form label small {
    margin-left: 5px;
    color: var(--subtle);
    font-size: 9px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background: rgba(255,255,255,.025);
    color: var(--text);
    outline: none;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.contact-form input,
.contact-form select {
    height: 46px;
    padding: 0 13px;
}

.contact-form textarea {
    min-height: 128px;
    padding: 12px 13px;
    resize: vertical;
}

.contact-form select option {
    background: #11151b;
    color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--cyan);
    background: rgba(53,212,232,.035);
    box-shadow: 0 0 0 3px rgba(53,212,232,.1);
}

.contact-form textarea::placeholder {
    color: #616a78;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 3px;
}

.form-footer p {
    max-width: 220px;
    color: var(--subtle);
    font-size: 9px;
    line-height: 1.5;
}

.form-status {
    min-height: 18px;
    color: var(--cyan);
    font-size: 11px;
}

.site-footer {
    padding: 58px 0 26px;
    background: #06080a;
}

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

.footer-brand > p {
    margin-top: 12px;
    color: var(--subtle);
    font-size: 11px;
}

.footer-grid nav, .footer-social {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-grid nav a, .footer-social a {
    min-height: 28px;
    color: var(--muted);
    font-size: 11px;
    text-decoration: none;
}

.footer-grid nav a:hover, .footer-social a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.footer-bottom p {
    color: var(--subtle);
    font-size: 10px;
}

.fade-up {
    opacity: 1;
    transform: none;
}

.js .fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.js .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
        gap: 42px;
    }

    .case-copy {
        padding: 40px;
    }

    .case-visual {
        padding: 24px;
    }

    .praxium-showcase {
        gap: 36px;
        padding: 42px;
    }

    .contact-shell {
        grid-template-columns: minmax(0, .75fr) minmax(460px, 1.25fr);
    }

    .contact-copy, .contact-form {
        padding: 42px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 128px;
    }

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

    .hero-copy {
        max-width: 720px;
    }

    .hero-product {
        max-width: 700px;
        margin-inline: auto;
    }

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

    .proof-label, .proof-grid a {
        border-bottom: 1px solid var(--line);
    }

    .proof-grid a:nth-child(3) {
        border-left: 0;
    }

    .split-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .split-header > p {
        max-width: 610px;
    }

    .case-study {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .case-visual,
    .case-visual-first .case-visual {
        order: -1;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-left: 0;
    }

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

    .praxium-showcase {
        grid-template-columns: 1fr;
    }

    .code-panel {
        width: 100%;
        max-width: 650px;
    }

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

    .about-copy {
        max-width: 700px;
        padding-top: 0;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        min-height: 480px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .site-nav {
        height: 66px;
    }

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

    .menu-button {
        display: block;
    }

    .no-js .menu-button {
        display: none;
    }

    .mobile-nav {
        left: 16px;
        right: 16px;
    }

    .hero {
        min-height: auto;
        padding: 118px 0 92px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.8rem);
    }

    .hero-lede {
        font-size: 15px;
    }

    .hero-signals li {
        min-width: 31%;
        padding-right: 16px;
    }

    .browser-frame {
        transform: none;
    }

    .floating-proof {
        right: 14px;
    }

    .section {
        padding: 86px 0;
    }

    .section-header {
        margin-bottom: 38px;
    }

    .section-header h2, .about-statement h2, .contact-copy h2 {
        font-size: clamp(2rem, 9vw, 3.2rem);
    }

    .case-copy {
        padding: 34px 28px 38px;
    }

    .case-visual {
        padding: 18px;
    }

    .case-details > div {
        grid-template-columns: 64px 1fr;
    }

    .small-project-grid {
        grid-template-columns: 1fr;
    }

    .small-project {
        min-height: 245px;
    }

    .praxium-showcase {
        gap: 32px;
        padding: 32px 24px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .research-programs {
        grid-template-columns: 1fr;
    }

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

    .principle {
        min-height: 290px;
        padding: 30px;
    }

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

    .collaboration-grid article,
    .collaboration-grid article:first-child {
        min-height: 190px;
        padding: 26px 0;
        border-bottom: 1px solid var(--line);
        border-left: 0;
    }

    .collaboration-grid article:last-child {
        border-bottom: 0;
    }

    .collaboration-grid h3 {
        margin-top: 42px;
    }

    .now-heading {
        align-items: start;
        flex-direction: column;
    }

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

    .now-grid article {
        min-height: 190px;
    }

    .contact-copy {
        min-height: 430px;
        padding: 36px 28px;
    }

    .contact-form {
        padding: 36px 28px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .hero-copy > .eyebrow {
        align-items: flex-start;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-signals {
        justify-content: space-between;
    }

    .hero-signals li {
        min-width: 0;
        padding-right: 8px;
    }

    .hero-signals span {
        font-size: 8px;
    }

    .hero-product {
        margin-bottom: 25px;
    }

    .floating-proof {
        right: 8px;
        bottom: -54px;
        width: calc(100% - 16px);
    }

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

    .proof-label, .proof-grid a,
    .proof-grid a:nth-child(3) {
        min-height: 82px;
        padding: 17px 0;
        border-left: 0;
    }

    .proof-grid a:last-child {
        border-bottom: 0;
    }

    .case-copy h3 {
        font-size: 2.35rem;
    }

    .case-details > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .case-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .more-work-heading {
        align-items: start;
        flex-direction: column;
    }

    .praxium-copy .case-links {
        align-items: stretch;
    }

    .praxium-copy .case-links .button {
        width: 100%;
    }

    .praxium-copy .text-link {
        margin: 4px 0 0;
    }

    .code-panel pre {
        padding: 20px;
        font-size: 9px;
    }

    .research-program {
        padding: 28px 24px;
    }

    .research-program dl > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .form-footer p {
        max-width: none;
    }

    .form-footer .button {
        width: 100%;
    }

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

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

    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js .fade-up {
        opacity: 1;
        transform: none;
    }
}
