:root {
    --paper:#f7f5f0;
    --ink:#1d211b;
    --muted:#50554b;
    --orange:#db4b28;
    --orange-ink:#b93d1c;
    --line:#d3d5ca;
    --dark:#222821;
    --bg-color:var(--paper);
    --text-color:var(--ink);
    --main-color:var(--orange);
    --second-bg-color:#e9e9df;
}

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
    scroll-padding-top:100px;
}

body {
    margin:0;
    background:var(--paper);
    color:var(--ink);
    font-family:'Poppins',sans-serif;
    font-size:14px;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
}

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

button,input,textarea {
    font:inherit;
}

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

button,a {
    touch-action:manipulation;
}

button {
    cursor:pointer;
}

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

h1,h2,h3,p {
    margin:0;
}

h1,h2,h3 {
    line-height:1.12;
    letter-spacing:-.055em;
    font-weight:500;
}

p {
    color:var(--muted);
}

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible {
    outline:3px solid var(--orange);
    outline-offset:5px;
}

::selection {
    background:#e9ac8e;
    color:var(--ink);
}

.wrap {
    width:min(1240px,calc(100% - 112px));
    margin-inline:auto;
}

.serif {
    font-family:Georgia,'Times New Roman',serif;
    font-weight:400;
    font-style:italic;
    letter-spacing:-.06em;
}

.eyebrow,.project-meta,.visual-top,.visual-bottom,.row-tag {
    font-family:monospace;
    font-size:11px;
    line-height:1.5;
    letter-spacing:.09em;
    text-transform:uppercase;
}

.eyebrow {
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--muted);
}

.orange {
    color:var(--orange);
}

.header {
    height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 max(56px,calc((100vw - 1240px)/2));
    position:sticky;
    top:0;
    z-index:30;
    background:rgba(247,245,240,.94);
    backdrop-filter:blur(18px);
    border-bottom:1px solid transparent;
    transition:border-color .2s;
}

.header.scrolled {
    border-color:var(--line);
}

.logo {
    font-size:32px;
    font-weight:600;
    letter-spacing:-2px;
    line-height:1;
}

.logo span {
    font-size:15px;
    vertical-align:top;
    color:var(--orange);
    margin-left:3px;
    letter-spacing:0;
}

.navbar {
    display:flex;
    align-items:center;
    gap:36px;
    font-size:12px;
}

.navbar a {
    position:relative;
}

.navbar a:not(.nav-contact):after {
    content:'';
    position:absolute;
    height:1px;
    bottom:-5px;
    left:0;
    width:0;
    background:var(--orange);
    transition:width .2s;
}

.navbar a:hover:after,.navbar a.active:after {
    width:100%;
}

.nav-contact {
    padding:10px 18px;
    border:1px solid var(--ink);
    border-radius:30px;
}

.nav-contact span {
    margin-left:16px;
}

.nav-contact:hover {
    background:var(--ink);
    color:var(--paper);
}

#menu-icon {
    display:none;
}

.hero {
    padding-top:36px;
}

.hero-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:35px;
}

.status-dot {
    display:inline-block;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--orange);
    box-shadow:0 0 0 4px #db4b2814;
}

.location {
    font-family:monospace;
    font-size:11px;
    color:var(--muted);
}

.location span {
    margin-left:22px;
}

.hero-layout {
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:46px;
    align-items:center;
}

.hero-copy>.eyebrow {
    margin-bottom:23px;
}

.hero h1 {
    font-size:clamp(64px,7.1vw,102px);
    letter-spacing:-.075em;
    line-height:.98;
}

.hero h1 .serif {
    font-size:.92em;
    white-space:nowrap;
}

.hero-bottom {
    display:flex;
    gap:35px;
    align-items:center;
    margin-top:35px;
    max-width:470px;
}

.hero-bottom p {
    max-width:350px;
    font-size:13px;
}

.round-link {
    width:58px;
    height:58px;
    flex-shrink:0;
    border-radius:50%;
    border:1px solid var(--ink);
    display:grid;
    place-items:center;
    font-size:27px;
    transition:background .2s,transform .2s;
}

.round-link:hover {
    background:var(--orange);
    border-color:var(--orange);
    color:white;
    transform:rotate(45deg);
}

.system-art {
    position:relative;
    aspect-ratio:1/1.05;
    overflow:hidden;
    background:#e9eade;
    border-radius:160px 160px 8px 8px;
    isolation:isolate;
}

.art-grid {
    position:absolute;
    inset:0;
    background-image:linear-gradient(#888e7914 1px,transparent 1px),linear-gradient(90deg,#888e7914 1px,transparent 1px);
    background-size:34px 34px;
    mask-image:linear-gradient(transparent,#000);
}

.art-label {
    position:absolute;
    top:12%;
    width:100%;
    text-align:center;
    font:11px monospace;
    letter-spacing:.16em;
}

.art-caption {
    position:absolute;
    bottom:22px;
    left:24px;
    right:24px;
    display:flex;
    justify-content:space-between;
    font:11px/1.6 monospace;
    letter-spacing:.04em;
}

.hero-foot {
    display:flex;
    justify-content:space-between;
    padding:38px 0 26px;
    font-size:11px;
    color:var(--muted);
}

.hero-foot a span {
    margin-left:20px;
}

.discipline-strip {
    margin-top:15px;
    border-block:1px solid var(--line);
    overflow:hidden;
}

.discipline-strip>div {
    display:flex;
    align-items:center;
    justify-content:space-around;
    gap:28px;
    padding:22px 35px;
    font:11px monospace;
    letter-spacing:.12em;
    white-space:nowrap;
}

.discipline-strip i {
    color:var(--orange);
    font-size:22px;
    font-style:normal;
}

.work-section,.experience-section {
    padding-block:110px;
}

.section-heading {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:60px;
    margin-bottom:45px;
}

.section-heading h2,.about-layout h2 {
    font-size:clamp(40px,4.7vw,65px);
    margin-top:22px;
}

.section-heading>p {
    max-width:305px;
    font-size:12px;
    padding-bottom:5px;
}

.feature-card {
    border:1px solid var(--line);
    border-radius:12px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#faf9f4;
}

.voxly-art {
    background:#d95130;
    min-height:500px;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:28px;
    color:#fff5e8;
    overflow:hidden;
}

.voxly-art:before {
    content:'';
    position:absolute;
    width:460px;
    height:460px;
    top:9%;
    left:-15%;
    border:1px solid #ffffff16;
    border-radius:50%;
    box-shadow:0 0 0 40px #ffffff06,0 0 0 80px #ffffff06,0 0 0 120px #ffffff06;
}

.visual-top,.visual-bottom {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    position:relative;
    font-size:11px;
}

.light-status {
    border:1px solid #ffffff55;
    padding:6px 9px;
    border-radius:20px;
    font-size:10px;
}

.voice-interface {
    position:relative;
    margin:40px 0;
}

.voice-message {
    font-family:Georgia,serif;
    font-style:italic;
    font-size:clamp(28px,3.2vw,48px);
    text-align:center;
    letter-spacing:-2px;
}

.voice-cursor {
    opacity:.6;
    animation:blink 1.2s step-end infinite;
}

.waveform {
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    margin:18px 0;
}

.waveform i {
    height:25%;
    width:5px;
    background:#ffd9b5;
    border-radius:5px;
    animation:wave 1.5s ease-in-out infinite alternate;
}

.waveform i:nth-child(3n) {
    height:65%;
    animation-delay:-.6s;
}

.waveform i:nth-child(4n) {
    height:90%;
    animation-delay:-1s;
}

.waveform i:nth-child(5n) {
    height:45%;
    animation-delay:-.3s;
}

.voice-languages {
    display:flex;
    gap:14px;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

.voice-languages span:not(:nth-child(2)) {
    padding:8px 12px;
    border:1px solid #ffffff44;
    border-radius:7px;
}

.visual-bottom>span:last-child {
    font-size:27px;
}

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

.project-meta {
    display:flex;
    justify-content:space-between;
    color:var(--muted);
    font-size:11px;
    gap:12px;
}

.feature-copy h3 {
    font-size:38px;
    margin:24px 0 18px;
}

.feature-copy>p {
    font-size:12px;
    line-height:1.9;
}

.feature-stats {
    display:flex;
    gap:48px;
    margin:26px 0;
}

.feature-stats strong {
    font-size:32px;
    line-height:1.1;
    font-weight:500;
    letter-spacing:-2px;
}

.feature-stats span {
    display:block;
    font-size:11px;
    color:var(--muted);
    margin-top:5px;
}

.tags {
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.tags span,.tech-tag {
    font:11px monospace;
    border:1px solid var(--line);
    padding:5px 9px;
    border-radius:4px;
}

.project-actions {
    margin-top:27px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:16px;
}

.button {
    display:inline-flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    padding:15px 20px;
    border:0;
    border-radius:5px;
    font-size:11px;
    line-height:1.5;
    transition:transform .2s,background .2s;
}

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

.dark {
    background:var(--ink);
    color:var(--paper);
}

.dark:hover {
    background:#414b3e;
}

.text-link {
    font-size:11px;
    text-decoration:underline;
    text-underline-offset:5px;
}

.project-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    margin-top:28px;
}

.project-card {
    border:1px solid var(--line);
    border-radius:10px;
    overflow:hidden;
    background:#faf9f4;
}

.project-visual {
    height:295px;
    display:block;
    position:relative;
    padding:25px;
    overflow:hidden;
}

.project-visual>.visual-top>span:last-child {
    font-size:23px;
    transition:transform .2s;
}

.project-visual:hover>.visual-top>span:last-child {
    transform:translate(3px,-3px);
}

.energy-art {
    background:#dfe5d5;
    color:#364e35;
}

.energy-number {
    font-size:64px;
    line-height:1.2;
    letter-spacing:-4px;
    margin-top:20px;
    position:relative;
    z-index:1;
}

.energy-number>span {
    font-family:Georgia,serif;
    font-style:italic;
}

.energy-number small {
    display:block;
    font:10px monospace;
    letter-spacing:.08em;
    margin-top:9px;
}

.chart-bars {
    position:absolute;
    left:25px;
    right:25px;
    bottom:0;
    height:120px;
    display:flex;
    align-items:flex-end;
    gap:6px;
    mask-image:linear-gradient(#000,#0004);
}

.chart-bars i {
    flex:1;
    height:var(--bar);
    background:#7c936f;
    border-radius:3px 3px 0 0;
    transition:height .5s;
}

.energy-art:hover .chart-bars i:nth-child(odd) {
    height:calc(var(--bar) * .7);
}

.rag-art {
    background:#e7dfd4;
    color:#594a40;
}

.rag-nodes {
    display:flex;
    align-items:center;
    justify-content:center;
    margin:32px auto 18px;
    max-width:330px;
}

.rag-doc {
    padding:15px 12px;
    border:1px solid #b9ac9b;
    border-radius:8px;
    font:11px monospace;
    transform:rotate(-8deg);
}

.rag-doc:last-child {
    transform:rotate(8deg);
}

.rag-line {
    height:1px;
    background:#b9ac9b;
    flex:1;
}

.rag-brain {
    font-size:60px;
    color:#986541;
    padding:0 16px;
    line-height:1;
}

.rag-art>p {
    text-align:center;
    font-size:25px;
    line-height:1.2;
    color:inherit;
    letter-spacing:-1px;
}

.rag-art em {
    font-family:Georgia,serif;
}

.project-card-copy {
    padding:28px;
}

.project-card-copy h3 {
    font-size:26px;
    margin:15px 0;
}

.project-card-copy>p {
    font-size:12px;
    line-height:1.8;
    min-height:66px;
    margin-bottom:20px;
}

.card-links {
    display:flex;
    gap:24px;
    margin-top:24px;
    font-size:11px;
}

.card-links a:hover {
    color:var(--orange-ink);
}

.social-links a:hover {
    color:#f18055;
}

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

.more-work>.eyebrow {
    margin-bottom:20px;
}

.work-row {
    display:flex;
    align-items:center;
    gap:26px;
    padding:28px 0;
    border-top:1px solid var(--line);
    transition:padding .2s;
}

.work-row:last-child {
    border-bottom:1px solid var(--line);
}

.work-row:hover {
    padding-inline:12px;
}

.row-number {
    font:11px monospace;
    color:var(--muted);
}

.work-row>div {
    flex:1;
}

.work-row h3 {
    font-size:22px;
    letter-spacing:-.035em;
}

.work-row p {
    font-size:11px;
    margin-top:8px;
}

.row-tag {
    font-size:10px;
    color:var(--muted);
}

.row-arrow {
    font-size:25px;
}

.about-section {
    background:var(--dark);
    color:var(--paper);
    padding-block:100px;
}

.about-section p,.about-section .eyebrow {
    color:#b4bcae;
}

.about-layout {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
}

.about-layout h2 {
    font-size:50px;
}

.about-signature {
    font-family:Georgia,serif;
    font-style:italic;
    font-size:35px;
    margin-top:48px;
    color:#d0d5c7;
    letter-spacing:-2px;
}

.about-signature span {
    color:#f27e54;
    font-size:30px;
    margin-left:25px;
}

.about-copy p {
    font-size:13px;
    margin-bottom:20px;
}

.about-copy .large-copy {
    font-size:24px;
    line-height:1.5;
    color:var(--paper);
    letter-spacing:-.8px;
}

.about-copy .text-link {
    display:inline-block;
    margin-top:5px;
}

.capability-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-top:70px;
    border-top:1px solid #ffffff26;
}

.capability-grid>div {
    padding:30px 15px 0 0;
}

.capability-grid>div>span {
    font:11px monospace;
    color:#e78b67;
}

.capability-grid h3 {
    font-size:17px;
    margin:17px 0 12px;
    letter-spacing:-.03em;
}

.capability-grid p {
    font-size:11px;
    line-height:2;
}

.experience-layout {
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:90px;
    border-top:1px solid var(--line);
    padding-top:40px;
}

.experience-main h3 {
    font-size:28px;
    margin:20px 0 15px;
}

.experience-main p {
    font-size:12px;
}

.experience-main .employer {
    color:var(--ink);
    margin-bottom:20px;
}

.experience-numbers {
    display:flex;
    gap:50px;
    margin:30px 0;
}

.experience-numbers strong {
    font-size:38px;
    font-weight:500;
    letter-spacing:-2px;
}

.experience-numbers span {
    display:block;
    font-size:11px;
    color:var(--muted);
}

.award {
    display:flex;
    align-items:center;
    gap:16px;
    border-top:1px solid var(--line);
    padding-top:20px;
    font-size:23px;
    color:var(--orange);
}

.award>span {
    font-size:12px;
    color:var(--ink);
}

.award small {
    display:block;
    font-size:11px;
    color:var(--muted);
    margin-top:4px;
}

.education-list {
    border-left:1px solid var(--line);
    padding-left:40px;
}

.education-list article {
    margin-top:28px;
}

.education-list article>span {
    font:11px monospace;
    color:var(--muted);
}

.education-list h3 {
    font-size:20px;
    margin:12px 0;
}

.education-list article>p {
    font-size:11px;
    line-height:1.9;
}

.contact-section {
    background:var(--dark);
    color:var(--paper);
    padding-block:95px;
}

.contact-layout {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:95px;
}

.contact-copy>.eyebrow {
    color:#b4bcae;
    font-size:11px;
}

.contact-copy h2 {
    font-size:68px;
    margin:28px 0;
    line-height:1.04;
}

.contact-copy h2>.orange {
    font-size:52px;
    margin-left:20px;
    color:#ef845c;
}

.contact-copy>p:not(.eyebrow) {
    font-size:11px;
    color:#b4bcae;
}

.contact-email {
    display:inline-block;
    margin-top:28px;
    font-size:16px;
    border-bottom:1px solid #ffffff40;
    padding-bottom:7px;
}

.social-links {
    display:flex;
    gap:25px;
    margin-top:28px;
    font-size:11px;
}

.contact-form {
    align-self:center;
    min-width:0;
}

.form-intro {
    font-size:21px;
    letter-spacing:-.6px;
    color:var(--paper);
    margin-bottom:28px;
}

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

.contact-form label {
    display:block;
    font-size:11px;
    margin-bottom:7px;
    color:#e0e3d9;
}

.contact-form label>span {
    color:#b4bcae;
}

.contact-form input,.contact-form textarea {
    width:100%;
    border:0;
    border-bottom:1px solid #ffffff35;
    background:transparent;
    border-radius:0;
    padding:10px 0 15px;
    color:var(--paper);
    font-size:11px;
    margin-bottom:25px;
    transition:border-color .2s;
}

.contact-form input::placeholder,.contact-form textarea::placeholder {
    color:#a0a998;
}

.contact-form input:focus,.contact-form textarea:focus {
    border-bottom-color:#ef845c;
    outline:0;
}

.contact-form textarea {
    resize:vertical;
    min-height:110px;
}

.orange-button {
    background:#f18055;
    color:#1c241a;
    width:100%;
    padding:17px 20px;
}

.orange-button:hover {
    background:#ff986e;
}

.orange-button:disabled {
    opacity:.6;
    cursor:wait;
    transform:none;
}

.form-note {
    font-size:11px;
    color:#b4bcae;
    text-align:center;
    margin-top:12px;
}

.form-status {
    font-size:12px;
    padding:14px;
    border:1px solid currentColor;
    margin-top:18px;
    border-radius:5px;
    color:#c9e7bd;
}

.form-status.error {
    color:#ffb99d;
}

.honeypot-field {
    position:absolute;
    left:-10000px;
    width:1px;
    height:1px;
    overflow:hidden;
}

.cf-turnstile {
    max-width:100%;
    overflow:hidden;
}

.footer {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    padding-block:32px;
    font-size:11px;
}

.footer>.logo {
    font-size:28px;
}

.footer>span {
    color:var(--muted);
}

.skip-link {
    position:fixed;
    top:-70px;
    left:20px;
    background:var(--ink);
    color:white;
    padding:12px 18px;
    z-index:100;
}

.skip-link:focus {
    top:15px;
}

#progress-bar {
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:2px;
    transform:scaleX(0);
    transform-origin:left;
    background:var(--orange);
    z-index:50;
}

.reveal {
    opacity:1;
}

.reveal.pending {
    opacity:0;
    transform:translateY(22px);
}

.reveal.visible {
    opacity:1;
    transform:none;
    transition:opacity .7s ease,transform .7s cubic-bezier(.2,.6,.2,1);
}

/* The same visual language carries through the long-form project pages. */
.case-header {
    border-bottom:1px solid var(--line);
}

.case-study {
    max-width:900px;
    padding:75px 40px 100px;
    margin:auto;
}

.featured-category {
    font:11px monospace;
    color:var(--orange-ink);
    text-transform:uppercase;
    letter-spacing:.08em;
}

.case-hero h1 {
    font-size:clamp(43px,6vw,76px);
    margin:24px 0;
}

.case-hero h1>span {
    font-family:Georgia,serif;
    font-style:italic;
}

.case-lead {
    font-size:16px;
    line-height:1.9;
}

.featured-status {
    display:inline-flex;
    align-items:center;
    gap:8px;
    font:11px monospace;
    padding:10px 13px;
    border:1px solid var(--line);
    border-radius:20px;
    margin-top:22px;
}

.featured-status-dot {
    width:6px;
    height:6px;
    border-radius:50%;
    background:var(--orange);
}

.case-video {
    display:block;
    max-height:65vh;
    max-width:100%;
    width:auto;
    margin:40px auto;
    border-radius:12px;
}

.case-section {
    padding-top:38px;
    margin-top:32px;
    border-top:1px solid var(--line);
}

.case-section h2 {
    font-size:30px;
    margin-bottom:20px;
}

.case-section p {
    font-size:14px;
    line-height:1.95;
}

.case-section a {
    text-decoration:underline;
    text-underline-offset:4px;
}

.case-list {
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:14px;
}

.case-list li {
    padding:20px;
    background:#e9e9df;
    border-radius:7px;
    font-size:13px;
    color:var(--muted);
    line-height:1.9;
}

.case-list strong {
    color:var(--ink);
    font-weight:500;
}

.case-note {
    padding:20px;
    margin-top:24px;
    border-left:2px solid var(--orange);
    background:#e9e9df;
}

.featured-tech {
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.case-cta {
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:40px;
}

.featured-btn {
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:var(--ink);
    color:var(--paper);
    padding:14px 19px;
    border-radius:5px;
    font-size:12px;
}

.featured-btn:hover {
    background:var(--orange);
}

.btn-icon {
    width:17px;
    height:17px;
    fill:currentColor;
}

.response-page {
    min-height:100svh;
    padding:40px max(24px,8vw);
    display:flex;
    flex-direction:column;
}

.response-page>div {
    margin:auto 0;
    max-width:730px;
    padding-block:70px;
}

.response-page h1 {
    font-size:clamp(48px,8vw,90px);
    margin:20px 0;
}

.response-page p {
    max-width:500px;
}

.response-page .button {
    margin-top:30px;
}

@keyframes wave {
    to {
        transform:scaleY(.35);
    }
}

@keyframes blink {
    50% {
        opacity:0;
    }
}

@media(min-width:1500px) {
    .hero {
        padding-top:55px;
    }
    .hero-layout {
        gap:75px;
    }
    .hero-foot {
        padding-top:55px;
    }
}

@media(max-width:1050px) {
    .wrap {
        width:calc(100% - 64px);
    }
    .header {
        padding-inline:32px;
    }
    .hero-layout {
        gap:30px;
    }
    .hero h1 {
        font-size:73px;
    }
    .hero-bottom {
        gap:20px;
    }
    .hero-bottom p {
        font-size:11px;
    }
    .feature-copy {
        padding:28px;
    }
    .feature-copy h3 {
        font-size:31px;
    }
    .voxly-art {
        padding:22px;
    }
    .visual-top {
        font-size:10px;
    }
    .light-status {
        font-size:10px;
    }
    .about-layout,.contact-layout {
        gap:45px;
    }
    .experience-layout {
        gap:40px;
    }
    .contact-copy h2 {
        font-size:58px;
    }
    .about-layout h2 {
        font-size:42px;
    }
    .row-tag {
        display:none;
    }
}

@media(max-width:760px) {
    html {
        scroll-padding-top:85px;
    }
    .wrap {
        width:calc(100% - 40px);
    }
    .header {
        height:75px;
        padding-inline:20px;
    }
    .logo {
        font-size:29px;
    }
    #menu-icon {
        display:flex;
        flex-direction:column;
        gap:6px;
        padding:12px;
        background:transparent;
        border:0;
        z-index:31;
    }
    #menu-icon span {
        width:24px;
        height:1px;
        background:var(--ink);
        transition:transform .2s;
    }
    #menu-icon[aria-expanded=true] span:first-child {
        transform:translateY(3.5px) rotate(45deg);
    }
    #menu-icon[aria-expanded=true] span:last-child {
        transform:translateY(-3.5px) rotate(-45deg);
    }
    .navbar {
        display:none;
        position:absolute;
        top:75px;
        left:0;
        right:0;
        background:var(--paper);
        padding:25px 24px;
        border-bottom:1px solid var(--line);
        flex-direction:column;
        align-items:stretch;
        gap:25px;
        font-size:16px;
    }
    .navbar.open {
        display:flex;
    }
    .nav-contact {
        align-self:flex-start;
    }
    .hero {
        padding-top:20px;
    }
    .hero-top {
        padding-bottom:30px;
    }
    .hero-top .eyebrow {
        font-size:10px;
    }
    .location {
        font-size:10px;
    }
    .location span {
        display:none;
    }
    .hero-layout {
        grid-template-columns:1fr;
        gap:35px;
    }
    .hero-copy>.eyebrow {
        font-size:11px;
    }
    .hero h1 {
        font-size:clamp(54px,11.8vw,86px);
    }
    .hero-bottom {
        max-width:550px;
        margin-top:28px;
        justify-content:space-between;
    }
    .hero-bottom p {
        font-size:12px;
        max-width:380px;
    }
    .round-link {
        height:50px;
        width:50px;
    }
    .system-art {
        aspect-ratio:1.45;
        border-radius:140px 140px 7px 7px;
        max-width:550px;
        width:100%;
        margin:auto;
    }
    .art-label {
        top:9%;
    }
    .art-caption {
        font-size:10px;
        bottom:14px;
    }
    .hero-foot {
        font-size:10px;
        padding-top:25px;
        gap:20px;
    }
    .hero-foot>span {
        max-width:170px;
    }
    .discipline-strip>div {
        justify-content:flex-start;
        overflow:auto;
        padding:15px 20px;
        font-size:11px;
        gap:22px;
    }
    .work-section,.experience-section {
        padding-block:65px;
    }
    .section-heading {
        display:block;
        margin-bottom:30px;
    }
    .section-heading h2 {
        font-size:45px;
        margin-top:15px;
    }
    .section-heading>p {
        margin-top:22px;
        max-width:360px;
        font-size:12px;
    }
    .feature-card {
        grid-template-columns:1fr;
    }
    .voxly-art {
        min-height:350px;
    }
    .voice-message {
        font-size:43px;
    }
    .voice-interface {
        margin:20px 0;
    }
    .feature-copy {
        padding:27px;
    }
    .feature-copy h3 {
        font-size:34px;
    }
    .feature-copy>p {
        font-size:13px;
    }
    .project-grid {
        gap:20px;
        grid-template-columns:1fr;
    }
    .project-visual {
        height:290px;
    }
    .project-card-copy {
        padding:25px;
    }
    .project-card-copy>p {
        min-height:0;
    }
    .project-card-copy h3 {
        font-size:27px;
    }
    .work-row {
        gap:16px;
        padding:24px 0;
    }
    .work-row h3 {
        font-size:19px;
    }
    .work-row p {
        font-size:11px;
        max-width:290px;
    }
    .row-arrow {
        font-size:23px;
    }
    .about-section {
        padding-block:65px;
    }
    .about-layout {
        grid-template-columns:1fr;
        gap:35px;
    }
    .about-layout h2 {
        font-size:43px;
    }
    .about-signature {
        margin-top:25px;
    }
    .capability-grid {
        grid-template-columns:1fr 1fr;
        margin-top:40px;
        gap:10px;
    }
    .capability-grid h3 {
        font-size:16px;
    }
    .capability-grid p {
        font-size:11px;
    }
    .experience-layout {
        grid-template-columns:1fr;
        gap:40px;
    }
    .experience-main h3 {
        font-size:28px;
    }
    .education-list {
        border-left:0;
        border-top:1px solid var(--line);
        padding:30px 0 0;
    }
    .contact-section {
        padding-block:65px;
    }
    .contact-layout {
        grid-template-columns:1fr;
        gap:45px;
    }
    .contact-copy h2 {
        font-size:65px;
    }
    .contact-copy>p:not(.eyebrow) {
        font-size:12px;
    }
    .contact-email {
        font-size:16px;
    }
    .form-intro {
        font-size:23px;
    }
    .contact-form input,.contact-form textarea {
        font-size:16px;
    }
    .contact-form label {
        font-size:11px;
    }
    .form-grid {
        gap:18px;
    }
    .footer {
        flex-wrap:wrap;
        padding-block:26px;
        gap:20px;
    }
    .footer>.logo {
        width:calc(50% - 20px);
    }
    .footer>p {
        text-align:right;
        flex:1;
    }
    .footer>span {
        flex:1;
    }
    .case-header .navbar {
        display:flex;
        position:static;
        border:0;
        padding:0;
        background:transparent;
        font-size:11px;
    }
    .case-study {
        padding:45px 20px 65px;
    }
    .case-lead {
        font-size:14px;
    }
    .case-hero h1 {
        font-size:48px;
    }
    .case-section h2 {
        font-size:27px;
    }
}

@media(max-width:380px) {
    .hero h1 {
        font-size:49px;
    }
    .hero-copy>.eyebrow {
        font-size:10px;
    }
    .hero-top .eyebrow {
        font-size:10px;
    }
    .location {
        font-size:10px;
    }
    .art-caption {
        font-size:9px;
    }
    .form-grid {
        grid-template-columns:1fr;
        gap:0;
    }
    .feature-copy {
        padding:22px;
    }
    .feature-copy h3 {
        font-size:29px;
    }
    .project-meta {
        font-size:10px;
    }
    .social-links {
        gap:18px;
    }
    .contact-copy h2 {
        font-size:56px;
    }
    .voice-message {
        font-size:34px;
    }
    .waveform {
        gap:4px;
    }
    .feature-stats {
        gap:35px;
    }
}

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

@media print {
    .header,.system-art,.contact-form,.discipline-strip,#progress-bar {
        display:none;
    }
    .wrap {
        width:100%;
    }
    .reveal.pending {
        opacity:1;
        transform:none;
    }
    body,.about-section,.contact-section {
        background:white;
        color:black;
    }
    .work-section,.experience-section,.about-section,.contact-section {
        padding-block:25px;
    }
    .feature-card,.project-card {
        break-inside:avoid;
    }
}
/* Project imagery and interactive details */
[hidden] { display: none !important; }
.motion-toggle {
    border: 0;
    padding: 3px 8px;
    background: transparent;
    color: var(--muted);
    font: inherit;
}
.motion-toggle span { margin-left: 8px; }
.motion-toggle:hover { color: var(--orange); }
.motion-paused *, .motion-paused *::before, .motion-paused *::after {
    animation-play-state: paused !important;
}
.motion-paused .reveal.pending { opacity: 1; transform: none; }
.motion-paused .reveal, .motion-paused [data-tilt], .motion-paused .image-preview img {
    transition: none !important;
    transform: none !important;
}
[data-tilt] {
    transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform .35s ease;
}
.work-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 0 0 28px;
}
.project-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.project-filters button {
    padding: 10px 16px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 30px;
    font-size: 11px;
    color: var(--muted);
    transition: color .2s, background .2s, border-color .2s;
}
.project-filters button span { margin-left: 7px; font-size: 11px; opacity: .7; }
.project-filters button[aria-pressed=true] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.project-filters button:hover { border-color: var(--ink); }
.filter-status { font: 11px monospace; white-space: nowrap; }
.voxly-showcase {
    background: #13101e;
    color: #f5f0ff;
    min-width: 0;
    padding: 26px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.showcase-brand { display: flex; align-items: center; gap: 12px; }
.showcase-brand>img { width: 44px; height: 44px; padding: 7px; border-radius: 12px; background: #fff; }
.showcase-brand strong { display: block; font-size: 20px; line-height: 1.1; letter-spacing: -.7px; }
.showcase-brand>div>span { font: 10px monospace; letter-spacing: .2em; color: #c5b0f3; }
.product-live { font: 10px monospace; padding: 7px 10px; border: 1px solid #ffffff30; border-radius: 20px; margin-left: auto; }
.image-preview { display: block; position: relative; width: 100%; padding: 0; background: transparent; border: 0; color: inherit; overflow: hidden; cursor: zoom-in; }
.image-preview img { width: 100%; display: block; height: auto; transition: transform .65s cubic-bezier(.2,.6,.2,1); }
.voxly-preview { margin-top: 26px; border: 1px solid #ffffff19; border-radius: 10px; }
.voxly-preview img { aspect-ratio: 1024/500; object-fit: contain; }
.preview-hint {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    background: #232721e8;
    color: #fff;
    border: 1px solid #ffffff35;
    border-radius: 30px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s, transform .25s;
}
.image-preview:hover .preview-hint, .image-preview:focus-visible .preview-hint { opacity: 1; transform: none; }
.image-preview:hover img { transform: scale(1.025); }
.voice-demo { margin: 8px 0 16px; text-align: center; }
.voice-demo .waveform { height: 52px; margin: 12px 0 0; gap: 4px; }
.voice-demo .waveform i { background: #ac88ef; width: 3px; }
.voice-demo>span { font: 10px monospace; letter-spacing: .1em; color: #c8b3ee; }
.showcase-demo-link { display: flex; align-items: center; gap: 12px; font-size: 11px; border-top: 1px solid #ffffff20; padding-top: 17px; }
.showcase-demo-link>span:last-child { margin-left: auto; }
.play-symbol { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; border: 1px solid #ffffff40; font-size: 17px; }
.showcase-demo-link:hover .play-symbol { background: #9875ed; color: white; }
.project-card { display: flex; flex-direction: column; }
.project-card-copy { flex: 1; display: flex; flex-direction: column; }
.project-card-copy .card-links { margin-top: auto; padding-top: 24px; }
.project-screen { padding: 22px 22px 0; background: #e0e6d6; }
.screen-rag { background: #e2dcf0; }
.screen-aalborg { background: #d8e5e3; }
.screen-fleet { background: #dce2ea; }
.screen-cabin { background: #e9ded0; }
.browser-bar {
    background: #fafbf9;
    border: 1px solid #23272113;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #6b6e65;
    font: 10px monospace;
}
.browser-dots { display: flex; gap: 4px; }
.browser-dots i { width: 5px; height: 5px; background: #ccd1c5; border-radius: 50%; }
.browser-dots i:first-child { background: #d49177; }
.browser-dots i:nth-child(2) { background: #d6c690; }
.browser-dots i:nth-child(3) { background: #a3bc96; }
.project-screen .image-preview { border: 1px solid #23272113; border-bottom: 0; box-shadow: 0 10px 25px #2327210d; }
.project-screen .image-preview img { aspect-ratio: 16/10; object-fit: contain; background: #fafbf9; }
.project-grid { align-items: stretch; }
.work-collection.is-filtered .project-grid { margin-top: 0; }
.work-collection.is-filtered .feature-card:not([hidden])+.project-grid { margin-top: 28px; }
.image-dialog {
    width: min(1160px,calc(100% - 40px));
    max-height: calc(100dvh - 40px);
    border: 1px solid #ffffff25;
    border-radius: 12px;
    padding: 18px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 30px 100px #0005;
}
.image-dialog::backdrop { background: #131713d9; backdrop-filter: blur(7px); }
.image-dialog[open] { animation: dialog-enter .22s ease-out; }
.image-dialog-toolbar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; font: 11px monospace; letter-spacing: .08em; }
.dialog-close { border: 1px solid var(--line); padding: 9px 14px; background: transparent; border-radius: 25px; color: var(--ink); font-size: 11px; }
.dialog-close>span { margin-left: 12px; font-size: 17px; }
.dialog-image { display: block; width: 100%; max-height: calc(100dvh - 175px); object-fit: contain; background: #e7e7df; border-radius: 5px; }
.image-dialog>p { font-size: 11px; padding-top: 14px; }
body.preview-open { overflow: hidden; }
@keyframes dialog-enter { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
@media (hover: none) { .preview-hint { opacity: 1; transform: none; } }
@media (max-width: 1050px) { .voxly-showcase { padding: 22px; } .product-live { font-size: 10px; padding: 6px; } }
@media (max-width: 760px) {
    .hero-foot { flex-wrap: wrap; }
    .motion-toggle { order: 3; flex-basis: 100%; text-align: left; padding: 0; }
    .work-toolbar { display: block; }
    .project-filters { gap: 6px; }
    .project-filters button { font-size: 11px; padding: 10px 12px; }
    .filter-status { margin-top: 14px; }
    .voxly-showcase { min-height: 0; padding: 22px; }
    .voice-demo { margin-top: 12px; }
    .product-live { font-size: 10px; }
    .project-screen { padding: 16px 16px 0; }
    .preview-hint { opacity: 1; transform: none; font-size: 10px; bottom: 10px; right: 10px; }
    .image-dialog { width: calc(100% - 20px); padding: 12px; }
    .image-dialog>p { font-size: 11px; }
}
@media (max-width: 380px) {
    .voxly-showcase { padding: 17px; }
    .showcase-brand { gap: 9px; }
    .showcase-brand>img { width: 35px; height: 35px; }
    .showcase-brand strong { font-size: 18px; }
    .product-live { font-size: 9px; }
    .browser-bar { gap: 7px; font-size: 10px; padding: 10px; }
    }
@media (prefers-reduced-motion: reduce) {
    [data-tilt] { transform: none !important; }
    .image-preview:hover img { transform: none; }
}
/* Full biography and original project detail, preserved in the new layout. */
.navbar { gap: 24px; }
.feature-details { grid-column: 1 / -1; border-top: 1px solid var(--line); padding: 32px 38px; }
.feature-details ul { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 36px; padding: 0; margin: 24px 0 0; list-style: none; }
.feature-details li { font-size: 12px; line-height: 1.9; color: var(--muted); padding-left: 18px; position: relative; }
.feature-details li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.feature-details strong { font-weight: 500; color: var(--ink); }
.about-copy h3.large-copy { margin-bottom: 24px; }
.about-profile-links { display: flex; gap: 22px; font-size: 11px; margin-top: 25px; }
.about-profile-links a:hover { color: #f18055; }
.skills-detail { margin-top: 65px; scroll-margin-top: 110px; }
.skills-detail>h2 { font-size: 42px; margin-top: 16px; }
.skills-detail .capability-grid { grid-template-columns: 1fr 1fr; margin-top: 30px; gap: 28px 40px; }
.skills-detail .capability-grid>div { padding: 24px 0 0; }
.skill-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-pill { border: 1px solid #ffffff29; border-radius: 5px; padding: 6px 10px; font-size: 11px; color: #d7dfcf; transition: border-color .2s, background .2s, transform .2s; }
.skill-pill:hover { border-color: #f18055; background: #f1805510; transform: translateY(-2px); }
.education-list { scroll-margin-top: 110px; }
@media (max-width: 1050px) { .navbar { gap: 18px; font-size: 11px; } .header>.logo { font-size: 27px; } }
@media (max-width: 760px) {
    .navbar { gap: 22px; font-size: 16px; }
    .feature-details { padding: 25px; }
    .feature-details ul { grid-template-columns: 1fr; gap: 20px; }
    .feature-details li { font-size: 12px; }
    .skills-detail .capability-grid { grid-template-columns: 1fr; gap: 12px; }
    .skills-detail .capability-grid h3 { font-size: 20px; }
    .skill-pill { font-size: 11px; }
    .about-profile-links { gap: 18px; }
    .footer>p { font-size: 10px; }
}
@media (min-width: 761px) {
    .work-collection:not(.is-filtered) .project-grid>.project-card:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .work-collection:not(.is-filtered) .project-grid>.project-card:last-child .project-screen { padding-bottom: 22px; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
    .project-card.visible:nth-child(even), .skill-group.visible:nth-child(even) { transition-delay: .08s; }
}
/* Motion and depth: entrance, marquee, live states and hover feedback. */
.intro { animation: intro-rise .9s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(var(--intro, 0) * 90ms + 80ms); }
.intro-art { animation-name: intro-art; animation-duration: 1.2s; }
.intro-line { display: block; overflow: hidden; padding: 0 .08em .1em 0; margin-bottom: -.1em; }
.intro-line>span { display: inline-block; animation: intro-line 1s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(var(--intro, 0) * 90ms + 80ms); }
@keyframes intro-rise { from { opacity: 0; transform: translateY(18px); } }
@keyframes intro-art { from { opacity: 0; transform: translateY(26px) scale(.97); } }
@keyframes intro-line { from { transform: translateY(105%); } }
.motion-paused .intro, .motion-paused .intro-line>span { animation: none !important; }

.status-dot { position: relative; }
.status-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--orange); animation: live-pulse 2.4s ease-out infinite; }
@keyframes live-pulse { from { transform: scale(1); opacity: .55; } to { transform: scale(3.2); opacity: 0; } }

.discipline-strip>.marquee-track { display: flex; justify-content: flex-start; gap: 0; padding: 0; overflow: visible; width: max-content; animation: marquee 38s linear infinite; }
.discipline-strip>.marquee-track>div {
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 56px;
    padding: 22px 28px;
    font: 11px monospace;
    letter-spacing: .12em;
    white-space: nowrap;
}
.discipline-strip:hover>.marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.feature-card, .project-card { transition: box-shadow .35s ease, border-color .35s ease, translate .35s ease; }
.reveal.visible.feature-card, .reveal.visible.project-card {
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1), box-shadow .35s ease, border-color .35s ease, translate .35s ease;
}
.project-card:hover { translate: 0 -4px; border-color: #c9ccbf; box-shadow: 0 22px 45px -24px #23272140; }
.feature-card:hover { border-color: #c9ccbf; box-shadow: 0 28px 60px -30px #23272150; }

.button>span, .featured-btn { transition: transform .25s ease, background .2s; }
.button>span { display: inline-block; }
.button:hover>span { transform: translate(3px,-3px); }
.card-links a, .text-link, .social-links a, .about-profile-links a { transition: color .2s; }

.navbar a.active { color: var(--orange-ink); }

.about-section, .contact-section { position: relative; overflow: hidden; isolation: isolate; }
.about-section::before, .contact-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, #db4b2824, transparent 65%);
    pointer-events: none;
}
.about-section::before { top: -320px; right: -220px; }
.contact-section::before { bottom: -380px; left: -260px; }
.contact-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(#ffffff08 1px, transparent 1px), linear-gradient(90deg, #ffffff08 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 75% 50%, #000, transparent 70%);
    pointer-events: none;
}

.case-hero>* { animation: intro-rise .9s cubic-bezier(.2,.7,.2,1) both; }
.case-hero>:nth-child(2) { animation-delay: .08s; }
.case-hero>:nth-child(3) { animation-delay: .16s; }
.case-hero>:nth-child(4) { animation-delay: .24s; }
.case-video { box-shadow: 0 30px 70px -40px #23272170; }

@media (max-width: 760px) {
    .discipline-strip>.marquee-track { padding: 0; overflow: visible; }
    .discipline-strip>.marquee-track>div { gap: 32px; padding: 15px 16px; font-size: 11px; }
    .project-card:hover { translate: none; }
}
@media (prefers-reduced-motion: reduce) {
    .intro, .intro-line>span, .case-hero>* { animation: none !important; }
    .project-card:hover { translate: none; }
}
@media print {
    .about-section::before, .contact-section::before, .contact-section::after { display: none; }
}
.feature-stats strong, .experience-numbers strong { font-variant-numeric: tabular-nums; }
/* Hero system: an inline SVG so orbits, chips and core scale together. */
.system-art { background: radial-gradient(circle at 50% 52%, #f6dccb 0, #f6dccb00 48%), #e9eade; }
.orbit-system { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orbit-ring { fill: none; stroke: #9da48f; stroke-width: 1; opacity: .8; }
.orbit-comet { fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 60 940; opacity: .75; animation: comet 9s linear infinite; }
.comet-b { animation-duration: 13s; animation-delay: -5s; }
.comet-c { animation-duration: 17s; animation-delay: -11s; }
@keyframes comet { to { stroke-dashoffset: -1000; } }
.orbit-electron { fill: var(--orange); }
.core-glow { transform-box: fill-box; transform-origin: center; animation: glow-breathe 5s ease-in-out infinite; }
@keyframes glow-breathe { 50% { transform: scale(1.14); opacity: .7; } }
.core-float { transform-box: fill-box; transform-origin: center; animation: core-float 7s ease-in-out infinite; }
@keyframes core-float { 50% { transform: translateY(-10px) rotate(5deg); } }
.core-body { fill: var(--orange); filter: drop-shadow(10px 18px 22px #67331b40); }
.core-mark { fill: var(--paper); font: 600 76px 'Poppins', sans-serif; letter-spacing: -6px; }
.core-mark tspan { fill: #f8bb8e; }
.orbit-chip rect { fill: var(--paper); stroke: #cfd3c4; filter: drop-shadow(0 6px 10px #333b2514); }
.orbit-chip text { fill: var(--ink); font: 600 13px monospace; letter-spacing: .06em; }
.chip-accent text { fill: var(--orange-ink); }
.chip-dark rect { fill: var(--ink); stroke: var(--ink); }
.chip-dark text { fill: var(--paper); }
.art-label { z-index: 1; text-transform: uppercase; color: var(--ink); }
.typed-phrase { color: var(--orange-ink); font-weight: 700; }
.typed-caret { display: inline-block; width: 7px; height: 1.1em; margin-left: 3px; vertical-align: -2px; background: var(--orange-ink); animation: blink 1s step-end infinite; }
.art-caption { z-index: 1; color: var(--ink); }
@media (max-width: 760px) {
    .system-art { aspect-ratio: 1.12; }
    .orbit-chip text { font-size: 15px; }
}
/* Voxly case study: the two phone clips from voxlykeys.com, side by side. */
.case-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 44px 0 12px; }
.case-videos figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.case-videos video {
    display: block;
    width: 100%;
    max-width: 330px;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
    background: #13101e;
    border: 8px solid #13101e;
    border-radius: 34px;
    box-shadow: 0 34px 70px -38px #13101e99;
}
.case-videos figcaption { font: 11px monospace; letter-spacing: .06em; color: var(--muted); text-align: center; }
.case-videos figcaption strong { color: var(--ink); font-weight: 600; }
@media (max-width: 560px) {
    .case-videos { grid-template-columns: 1fr; gap: 36px; }
    .case-videos video { max-width: 300px; }
}
.case-videos .ambient-video { cursor: pointer; transition: filter .25s ease; }
.case-videos .ambient-video.is-paused { filter: saturate(.7) brightness(.92); }
.case-videos .ambient-video:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
