:root {
    --ink: #0a0a12;
    --ink-soft: #4c4b56;
    --paper: #f1f1f4;
    --white: #ffffff;
    --blue: #008ee7;
    --blue-dark: #008ee7;
    --lime: #d5ff49;
    --coral: #ff806d;
    --ice: #e8f6ff;
    --line: #d8d7de;
    --mono: var(--sans);
    --sans: "Manrope", Arial, sans-serif;
    --shadow: 0 28px 80px rgba(16, 19, 26, .12);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body:has(.site-nav.open) { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 128px 0; }
.site-grain {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: .02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Navigation and brand */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 88px;
    border-bottom: 1px solid transparent;
    transition: height .25s ease, background .25s ease, border .25s ease;
}
.site-header.scrolled {
    height: 72px;
    background: rgba(245, 246, 241, .92);
    border-color: rgba(16, 19, 26, .09);
    backdrop-filter: blur(18px);
}
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.045em; }
.brand-name { font-size: 23px; }
.brand-name span { color: #69707d; font-weight: 500; }
.brand-mark { position: relative; display: inline-block; width: 30px; height: 30px; transform: rotate(-10deg); }
.brand-mark i { position: absolute; width: 15px; height: 15px; border: 4px solid var(--ink); border-radius: 2px; }
.brand-mark i:nth-child(1) { top: 1px; left: 0; border-right: 0; border-bottom: 0; }
.brand-mark i:nth-child(2) { top: 7px; right: 0; border-left: 0; border-bottom: 0; }
.brand-mark i:nth-child(3) { bottom: 0; left: 6px; border-top: 0; border-right: 0; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 650; }
.site-nav > a:not(.nav-cta) { color: #535966; transition: color .2s; }
.site-nav > a:not(.nav-cta):hover, .site-nav > a.active { color: var(--blue); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 13px 19px;
    border-radius: 100px;
    background: var(--ink);
    color: #fff;
}
.nav-cta span { color: var(--lime); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: none; }
.nav-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--ink); transition: .2s; }

/* Shared typography and controls */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #535966;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(25, 71, 255, .12); }
.kicker-light { color: #b8bfcb; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
h1, h2 { line-height: 1.04; }
h1 span, h2 span { color: var(--blue); }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 100px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(16, 19, 26, .14); }
.button-blue { background: var(--blue); color: #fff; }
.button-blue:hover { background: var(--blue-dark); }
.button-dark { background: var(--ink); color: #fff; }
.button-lime { background: var(--lime); color: var(--ink); }
.button-ghost { border: 1px solid #c7cbc4; background: transparent; }
.button.full { width: 100%; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 4px;
    border-bottom: 1px solid #9298a2;
    font-size: 14px;
    font-weight: 750;
}
.arrow-link span { transition: transform .2s; }
.arrow-link:hover span { transform: translate(3px, -3px); }
.section-head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; margin-bottom: 64px; }
.section-head h2 { margin: 18px 0 0; font-size: clamp(43px, 5vw, 68px); }
.section-head > div:last-child > p, .section-head > p { margin-bottom: 24px; color: var(--ink-soft); font-size: 17px; }
.section-head.compact { grid-template-columns: 1fr .55fr; }
.section-head.compact h2 { font-size: clamp(40px, 4vw, 60px); }
.flash { position: relative; z-index: 80; margin-top: 104px; padding: 15px 20px; border-radius: 12px; }
.flash-success { background: #daf7e6; color: #17633a; }

/* Home hero */
.home-hero { padding: 148px 0 0; overflow: hidden; }
.home-hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 58px; align-items: center; }
.home-hero-copy { padding: 32px 0 18px; }
.home-hero-copy h1 { margin: 28px 0; font-size: clamp(60px, 6.8vw, 94px); font-weight: 750; letter-spacing: -.07em; }
.home-hero-copy > p { max-width: 600px; color: var(--ink-soft); font-size: 19px; }
.hero-note { display: flex; gap: 14px; align-items: center; max-width: 470px; margin-top: 46px; padding-top: 25px; border-top: 1px solid var(--line); }
.hero-note-icon { display: grid; flex: 0 0 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--lime); }
.hero-note p { margin: 0; color: #626873; font-size: 13px; line-height: 1.55; }
.hero-note strong { display: block; color: var(--ink); }
.home-hero-media { position: relative; min-height: 640px; overflow: hidden; border-radius: 28px; background: #ddd; }
.home-hero-media > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.media-label {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(345px, calc(100% - 48px));
    padding: 22px;
    border-radius: 17px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
}
.media-label span { display: block; margin-bottom: 8px; color: #747b86; font-family: var(--mono); font-size: 9px; letter-spacing: .11em; }
.media-label strong { display: block; font-size: 16px; line-height: 1.4; }
.availability-card {
    position: absolute;
    top: 28px;
    left: 28px;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    line-height: 1.45;
    box-shadow: var(--shadow);
}
.availability-card i { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(217, 255, 67, .14); }
.capability-line { display: flex; align-items: center; gap: 46px; margin-top: 44px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-line > span { color: #7b818b; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.capability-line div { display: flex; flex: 1; justify-content: space-between; gap: 25px; font-size: 13px; }

/* Product tiles */
.product-home { background: #fff; }
.product-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.product-tile {
    position: relative;
    display: flex;
    min-height: 410px;
    flex-direction: column;
    padding: 34px;
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform .25s, box-shadow .25s;
}
.product-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-tile-1 { grid-column: span 7; background: var(--blue); color: #fff; }
.product-tile-2 { grid-column: span 5; background: var(--lime); }
.product-tile-3 { grid-column: span 5; background: #eceef5; }
.product-tile-4 { grid-column: span 7; background: var(--coral); }
.tile-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: auto; }
.tile-top > i { font-style: normal; font-size: 22px; }
.product-symbol {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    background: var(--ink);
    color: #fff;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -.04em;
}
.product-symbol.mint { background: #b6f8d5; color: #0b6040; }
.product-symbol.violet { background: #d8ccff; color: #4b2993; }
.product-symbol.orange { background: #ffd2b9; color: #a13b12; }
.product-symbol.blue { background: #c9d7ff; color: #173fae; }
.product-symbol.yellow { background: #fff1a8; color: #725b00; }
.product-symbol.slate { background: #d9dee6; color: #354052; }
.product-symbol.green { background: #c7f0c9; color: #246b31; }
.product-symbol.pink { background: #ffd2e1; color: #9a2d56; }
.product-symbol.cyan { background: #c9f4f3; color: #126569; }
.product-symbol.indigo { background: #d4d5ff; color: #373b9e; }
.product-symbol.teal { background: #bff1eb; color: #12625c; }
.product-tile-1 .product-symbol { background: var(--lime); color: var(--ink); }
.product-tile small, .flagship-card > small, .specialist-item small, .digital-offer small {
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .7;
}
.product-tile h3 { margin: 8px 0 12px; font-size: 35px; }
.product-tile p { max-width: 530px; margin-bottom: 30px; opacity: .76; }
.tile-feature { display: flex; gap: 14px; align-items: center; margin-top: auto; padding-top: 19px; border-top: 1px solid rgba(16, 19, 26, .16); font-size: 13px; font-weight: 650; }
.product-tile-1 .tile-feature { border-color: rgba(255, 255, 255, .25); }
.tile-feature span { font-family: var(--mono); font-size: 10px; opacity: .7; }

/* Home systems and capabilities */
.systems-section { background: var(--paper); }
.systems-grid { display: grid; grid-template-columns: 1.07fr .93fr; gap: 82px; align-items: center; }
.systems-image { position: relative; }
.systems-image img { min-height: 620px; object-fit: cover; border-radius: var(--radius); }
.image-chip { position: absolute; left: 22px; bottom: 22px; padding: 10px 15px; border-radius: 100px; background: var(--lime); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.systems-copy h2 { margin: 20px 0 25px; font-size: clamp(43px, 4.8vw, 66px); }
.systems-copy > p { color: var(--ink-soft); font-size: 17px; }
.check-list { padding: 0; margin: 38px 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { display: grid; grid-template-columns: 38px 1fr; gap: 15px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.check-list i { color: var(--blue); font-family: var(--mono); font-size: 10px; font-style: normal; }
.check-list strong { display: block; margin-bottom: 3px; font-size: 15px; }
.check-list span { color: #656b75; font-size: 13px; }
.service-studio { background: #fff; }
.capability-grid { border-top: 1px solid var(--line); }
.capability-item { display: grid; grid-template-columns: 65px .75fr 1fr 32px; gap: 30px; align-items: center; padding: 28px 6px; border-bottom: 1px solid var(--line); transition: padding .2s, color .2s; }
.capability-item:hover { padding-right: 16px; padding-left: 16px; color: var(--blue); }
.capability-item > span { font-family: var(--mono); font-size: 10px; color: #858b94; }
.capability-item h3 { margin: 0; font-size: 25px; }
.capability-item p { margin: 0; color: #696f79; font-size: 14px; }
.capability-item i { font-style: normal; text-align: right; }
.workflow-section { padding-top: 0; background: #fff; }
.workflow-card { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; padding: 72px; border-radius: 30px; background: var(--ink); color: #fff; }
.workflow-intro h2 { margin: 20px 0 26px; font-size: clamp(42px, 4.7vw, 64px); }
.workflow-intro p { max-width: 430px; color: #aeb5c1; }
.workflow-steps article { display: grid; grid-template-columns: 48px 1fr; gap: 25px; padding: 24px 0; border-bottom: 1px solid #333741; }
.workflow-steps article:first-child { padding-top: 0; }
.workflow-steps article > span { color: var(--lime); font-family: var(--mono); font-size: 11px; }
.workflow-steps h3 { margin: 0 0 7px; font-size: 22px; }
.workflow-steps p { margin: 0; color: #aeb5c1; font-size: 14px; }
.local-section { background: var(--lime); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: end; }
.local-copy h2 { margin: 20px 0; font-size: clamp(43px, 4.5vw, 65px); }
.local-copy h2 span { color: var(--blue); }
.local-copy p { max-width: 570px; color: #3e441d; font-size: 17px; }
.office-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.office-mini-grid article { padding: 28px; border: 1px solid rgba(16, 19, 26, .18); border-radius: 18px; background: rgba(255, 255, 255, .42); }
.office-mini-grid article > span { font-family: var(--mono); font-size: 10px; }
.office-mini-grid small { display: block; margin: 42px 0 4px; text-transform: uppercase; }
.office-mini-grid h3 { margin-bottom: 7px; font-size: 26px; }
.office-mini-grid p { margin: 0; font-size: 12px; }

/* Inner page heroes */
.inner-hero { padding: 156px 0 70px; }
.inner-hero-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 65px; align-items: center; }
.inner-hero-copy h1 { margin: 25px 0; font-size: clamp(58px, 6.2vw, 88px); letter-spacing: -.065em; }
.inner-hero-copy > p { max-width: 560px; color: var(--ink-soft); font-size: 18px; }
.product-hero-image, .service-hero-image { position: relative; overflow: hidden; border-radius: 28px; }
.product-hero-image img { height: 600px; object-fit: cover; }
.service-hero-image img { height: 570px; object-fit: cover; }
.product-hero-badge { position: absolute; right: 22px; bottom: 22px; padding: 16px 20px; border-radius: 14px; background: var(--ink); color: #fff; }
.product-hero-badge strong, .product-hero-badge span { display: block; }
.product-hero-badge strong { font-size: 14px; }
.product-hero-badge span { color: #abb1bc; font-size: 11px; }
.product-category-line { display: flex; justify-content: space-between; margin-top: 48px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #656b75; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }

/* Product page */
.flagship-section { background: #fff; }
.flagship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.flagship-card { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: #fafbf8; scroll-margin-top: 100px; }
.flagship-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.flagship-media {
    aspect-ratio: 1.5;
    margin: 0 0 32px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--paper);
}
.flagship-media img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.flagship-card:hover .flagship-media img { transform: scale(1.035); }
.flagship-index { color: #9298a1; font-family: var(--mono); font-size: 11px; }
.flagship-card h2 { margin: 8px 0 5px; font-size: 41px; }
.flagship-card .audience { color: var(--blue); font-size: 12px; font-weight: 700; }
.product-platform {
    display: inline-flex;
    width: fit-content;
    margin: 2px 0 12px;
    padding: 6px 9px;
    border-radius: 100px;
    background: var(--ice);
    color: #4e43c6;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.flagship-card > p:not(.audience) { color: var(--ink-soft); }
.flagship-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 26px 0; margin: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.flagship-card li { display: flex; gap: 9px; font-size: 12px; }
.flagship-card li i { color: var(--blue); font-style: normal; }
.flagship-actions { display: flex; gap: 24px; align-items: center; justify-content: space-between; }
.flagship-actions > a:last-child { color: #686772; font-size: 11px; font-weight: 700; }
.flagship-actions > a:last-child:hover { color: var(--blue); }
.specialist-section { background: var(--paper); }
.specialist-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.specialist-item { display: flex; min-height: 400px; flex-direction: column; padding: 30px; border-radius: 20px; background: #fff; }
.specialist-item > div { display: flex; align-items: center; justify-content: space-between; }
.specialist-item > div small { margin: 0; max-width: 145px; text-align: right; }
.specialist-item h3 { margin: 55px 0 14px; font-size: 29px; }
.specialist-item p { color: #666d77; font-size: 14px; }
.specialist-item > a { margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 750; }
.specialist-item > a span { float: right; }
.product-principle { padding-top: 0; }
.principle-card { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 68px; border-radius: 28px; background: var(--blue); color: #fff; }
.principle-card h2 { margin: 20px 0 0; font-size: clamp(40px, 4vw, 58px); }
.principle-list { display: flex; flex-direction: column; justify-content: center; }
.principle-list span { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .22); }
.principle-list i { color: var(--lime); font-family: var(--mono); font-size: 10px; font-style: normal; }
.digital-offers { background: #fff; }
.digital-offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.digital-offer { display: flex; min-height: 390px; flex-direction: column; padding: 30px; border-radius: 20px; background: var(--paper); transition: background .2s, transform .2s; }
.digital-offer:hover { transform: translateY(-4px); background: var(--ice); }
.digital-offer > span { font-family: var(--mono); font-size: 10px; }
.digital-offer h3 { margin: 12px 0; font-size: 30px; }
.digital-offer p { color: #626974; font-size: 14px; }
.digital-offer > i { margin-top: auto; color: var(--blue); font-size: 13px; font-style: normal; font-weight: 700; }
.simple-cta { background: var(--lime); }
.simple-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.simple-cta h2 { margin: 18px 0 0; font-size: clamp(43px, 4vw, 60px); }
.simple-cta p { color: #484e2c; font-size: 17px; }

/* Services */
.services-catalogue { background: #fff; }
.services-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card-new { display: flex; min-height: 450px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 21px; scroll-margin-top: 100px; transition: border .2s, transform .2s; }
.service-card-new:hover { transform: translateY(-4px); border-color: var(--blue); }
.service-card-head { display: flex; align-items: center; justify-content: space-between; }
.service-card-head span { color: #858c96; font-family: var(--mono); font-size: 10px; }
.service-card-head i { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--ice); color: var(--blue); font-style: normal; }
.service-card-new h2 { margin: 50px 0 14px; font-size: 30px; }
.service-card-new > p { color: #656c76; font-size: 14px; }
.service-card-new ul { padding: 18px 0 0; margin: 0 0 25px; border-top: 1px solid var(--line); list-style: none; }
.service-card-new li { position: relative; padding: 5px 0 5px 16px; font-size: 12px; }
.service-card-new li:before { position: absolute; left: 0; color: var(--blue); content: "•"; }
.service-card-new > a { margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 750; }
.service-card-new > a span { float: right; }
.engagement-section { background: var(--paper); }
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.engagement-grid article { padding: 34px; border-top: 3px solid var(--ink); background: #fff; }
.engagement-grid article > span { float: right; font-family: var(--mono); font-size: 10px; }
.engagement-grid small { color: var(--blue); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.engagement-grid h3 { margin: 70px 0 12px; font-size: 28px; }
.engagement-grid p { margin: 0; color: #656c76; font-size: 14px; }
.ready-product { background: var(--paper); padding-top: 0; }
.ready-product-grid { display: grid; grid-template-columns: 1fr .68fr; gap: 90px; align-items: center; padding: 65px; border-radius: 27px; background: var(--ink); color: #fff; }
.ready-product h2 { margin: 18px 0 0; font-size: clamp(40px, 4vw, 58px); }
.ready-product p { color: #aeb5c1; }

/* Product and service detail pages */
.detail-page { background: var(--paper); }
.detail-hero { padding: 126px 0 0; background: #fff; }
.detail-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px 0 34px;
    color: #777681;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.detail-breadcrumb a:hover { color: var(--blue); }
.detail-breadcrumb strong { color: var(--ink); font-weight: 500; }
.detail-hero-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 70px;
    align-items: center;
    padding-bottom: 65px;
}
.detail-hero-copy h1 {
    margin: 27px 0 25px;
    font-family: "Space Grotesk", var(--sans);
    font-size: clamp(53px, 5.7vw, 82px);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .95;
}
.detail-hero-copy > p { max-width: 600px; color: var(--ink-soft); font-size: 17px; }
.detail-mark-line { display: flex; gap: 16px; align-items: center; }
.detail-mark-line > span:last-child {
    color: #71707a;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.detail-platform-chip {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    padding: 8px 12px;
    border: 1px solid #d7d3ff;
    border-radius: 100px;
    background: #f0efff;
    color: #5146c9;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.service-detail-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 15px;
    background: var(--blue);
    color: #fff;
    font-size: 20px;
}
.detail-product-visual,
.service-detail-media {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--ink);
}
.detail-product-visual > img,
.service-detail-media > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.detail-product-placeholder { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; background: var(--blue); }
.detail-product-placeholder > span { position: relative; z-index: 2; color: #fff; font-family: "Space Grotesk", var(--sans); font-size: clamp(90px, 13vw, 190px); font-weight: 600; letter-spacing: -.08em; }
.detail-product-placeholder i {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
}
.detail-product-placeholder i:nth-of-type(2) { width: 95%; }
.detail-product-placeholder i:nth-of-type(3) { width: 125%; }
.detail-accent-yellow { background: #d5b928; }
.detail-accent-slate { background: #445067; }
.detail-accent-green { background: #2f7b4d; }
.detail-accent-pink { background: #d95789; }
.detail-accent-cyan { background: #178b91; }
.detail-accent-indigo { background: #5556c9; }
.detail-visual-label {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 17px 19px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 13px;
    background: rgba(9,9,17,.62);
    color: #fff;
    backdrop-filter: blur(14px);
}
.detail-visual-label span,
.detail-visual-label strong { display: block; }
.detail-visual-label span { color: #aaa8b4; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.detail-visual-label strong { margin-top: 3px; font-size: 13px; }
.service-detail-media:after { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,18,.05), rgba(10,10,18,.58)); content: ""; }
.service-detail-orbit {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 180px;
    height: 180px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    background: rgba(10,10,18,.28);
    color: #fff;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(12px);
}
.service-detail-orbit > span { font-size: 48px; }
.service-detail-orbit i {
    position: absolute;
    inset: -40%;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    animation: nova-spin 25s linear infinite;
}
.service-detail-orbit i:last-child { inset: -85%; animation-direction: reverse; animation-duration: 34s; }
.detail-feature-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}
.service-detail-page .detail-feature-line { grid-template-columns: repeat(3, 1fr); }
.detail-feature-line > span {
    display: flex;
    gap: 14px;
    min-height: 82px;
    align-items: center;
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.4;
}
.detail-feature-line > span:last-child { border-right: 0; }
.detail-feature-line i { color: var(--blue); font-family: var(--mono); font-size: 9px; font-style: normal; }
.detail-overview { background: var(--paper); }
.detail-overview-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10vw; }
.detail-sticky-title { position: sticky; top: 110px; align-self: start; }
.detail-sticky-title h2 { margin: 20px 0 0; font-size: clamp(42px, 4.5vw, 62px); }
.detail-lead { margin-bottom: 55px; color: var(--ink); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.5; }
.detail-outcomes { border-top: 1px solid var(--line); }
.detail-outcomes > div { display: grid; grid-template-columns: 45px 1fr; gap: 25px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.detail-outcomes span { color: var(--blue); font-family: var(--mono); font-size: 9px; }
.detail-outcomes p { margin: 0; color: #55545f; font-size: 15px; }
.detail-capabilities { background: #fff; }
.detail-module-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-module-grid article {
    position: relative;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .25s, color .25s;
}
.detail-module-grid article:hover { background: var(--ink); color: #fff; }
.detail-module-grid article > span { color: var(--blue); font-family: var(--mono); font-size: 9px; }
.detail-module-grid h3 { position: relative; z-index: 2; max-width: 270px; margin: 100px 0 0; font-size: 23px; }
.detail-module-grid article > i {
    position: absolute;
    right: -10px;
    bottom: -35px;
    color: rgba(111,99,255,.1);
    font-family: "Space Grotesk", var(--sans);
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -.09em;
}
.detail-module-grid article:hover > i { color: rgba(255,255,255,.08); }
.detail-delivery { background: var(--ink); color: #fff; }
.detail-delivery-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}
.detail-delivery-intro h2 { margin: 20px 0 25px; font-size: clamp(43px, 4.5vw, 62px); }
.detail-delivery-intro p { max-width: 500px; color: #aaa8b4; }
.detail-step-list { border-top: 1px solid #34343f; }
.detail-step-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #34343f;
}
.detail-step-list span { color: var(--lime); font-family: var(--mono); font-size: 9px; }
.detail-step-list p { margin: 0; color: #d1d0d7; font-size: 14px; }
.detail-integration-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: .35fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 10px;
    padding: 30px;
    border: 1px solid #34343f;
}
.detail-integration-panel > span { color: #8b8996; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.detail-integration-panel > div { display: flex; flex-wrap: wrap; gap: 10px; }
.detail-integration-panel i { padding: 9px 13px; border: 1px solid #44434f; border-radius: 100px; color: #d5d4da; font-size: 11px; font-style: normal; }
.detail-related-reading { background: var(--paper); }
.detail-reading-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.detail-reading-card {
    display: flex;
    min-height: 350px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    background: #fff;
    transition: transform .25s, border .25s;
}
.detail-reading-card:hover { transform: translateY(-5px); border-color: var(--blue); }
.detail-reading-card > span { color: var(--blue); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.detail-reading-card h3 { margin: 50px 0 14px; font-size: 26px; }
.detail-reading-card p { color: #686772; font-size: 13px; }
.detail-reading-card i { margin-top: auto; color: var(--blue); font-size: 12px; font-style: normal; font-weight: 700; }
.detail-more { background: #fff; }
.detail-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.detail-more-card {
    position: relative;
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 27px;
    border-radius: 18px;
    background: var(--paper);
    transition: transform .25s, background .25s;
}
.detail-more-card:hover { transform: translateY(-4px); background: var(--ice); }
.detail-more-card small { margin-top: auto; color: #767580; font-family: var(--mono); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.detail-more-card h3 { margin: 8px 0 0; font-size: 27px; }
.detail-more-card > i { position: absolute; top: 25px; right: 25px; font-style: normal; }

/* About */
.about-intro { padding: 158px 0 0; }
.about-intro-copy { max-width: 1100px; }
.about-intro h1 { margin: 27px 0 40px; font-size: clamp(62px, 8vw, 112px); letter-spacing: -.075em; }
.about-intro-copy > p { max-width: 690px; color: var(--ink-soft); font-size: 20px; }
.about-hero-image { position: relative; height: 660px; margin-top: 65px; overflow: hidden; border-radius: 28px; }
.about-hero-image img { height: 100%; object-fit: cover; object-position: center; }
.about-hero-image > div { position: absolute; right: 25px; bottom: 25px; padding: 18px 22px; border-radius: 14px; background: var(--lime); }
.about-hero-image span, .about-hero-image strong { display: block; }
.about-hero-image span { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.about-hero-image strong { font-size: 15px; }
.about-story { background: #fff; }
.about-story-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 100px; }
.about-story h2 { margin: 18px 0; font-size: clamp(44px, 5vw, 68px); }
.about-story-copy p { color: #5e6570; }
.about-story-copy .lead { color: var(--ink); font-size: 23px; line-height: 1.5; }
.belief-section { background: var(--paper); }
.belief-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.belief-grid article { min-height: 310px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.belief-grid article > span { color: var(--blue); font-family: var(--mono); font-size: 10px; }
.belief-grid h3 { margin: 75px 0 12px; font-size: 29px; }
.belief-grid p { max-width: 500px; margin: 0; color: #656c76; }
.offices-section { padding-top: 0; }
.offices-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; padding: 68px; border-radius: 28px; background: var(--blue); color: #fff; }
.offices-intro h2 { margin: 20px 0; font-size: clamp(42px, 4.4vw, 62px); }
.offices-intro p { color: #d3dcff; }
.office-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.office-list article { padding: 28px; border-radius: 18px; background: rgba(255, 255, 255, .11); }
.office-list article > span { float: right; color: var(--lime); font-family: var(--mono); font-size: 10px; }
.office-list small { font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.office-list h3 { margin: 75px 0 7px; font-size: 27px; }
.office-list p { margin: 0; color: #d3dcff; font-size: 12px; }

/* Contact and forms */
.contact-page-new { padding: 158px 0 120px; }
.contact-heading { max-width: 900px; margin-bottom: 70px; }
.contact-heading h1 { margin: 25px 0; font-size: clamp(62px, 7.6vw, 105px); letter-spacing: -.075em; }
.contact-heading > p { max-width: 650px; color: var(--ink-soft); font-size: 19px; }
.contact-layout { display: grid; grid-template-columns: .76fr 1.24fr; overflow: hidden; border-radius: 28px; background: var(--ink); }
.contact-panel { display: flex; flex-direction: column; padding: 48px; color: #fff; }
.contact-direct > span, .contact-offices > span { display: block; margin-bottom: 18px; color: #8f98a7; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.contact-direct a { display: grid; grid-template-columns: 1fr auto; padding: 17px 0; border-bottom: 1px solid #343944; }
.contact-direct a small { grid-column: 1; color: #9ea6b3; }
.contact-direct a strong { grid-column: 1; font-size: 16px; }
.contact-direct a i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--lime); font-style: normal; }
.contact-offices { margin-top: 48px; }
.contact-offices article { display: grid; grid-template-columns: 35px 1fr; gap: 12px; margin-bottom: 22px; }
.contact-offices article > i { color: var(--lime); font-family: var(--mono); font-size: 10px; font-style: normal; }
.contact-offices small, .contact-offices strong { display: block; }
.contact-offices small { color: #969fac; font-size: 10px; text-transform: uppercase; }
.contact-offices strong { font-size: 17px; }
.contact-offices p { margin: 2px 0 0; color: #aeb5c1; font-size: 11px; }
.response-note { display: flex; gap: 14px; margin: auto 0 0; padding-top: 26px; border-top: 1px solid #343944; color: #aeb5c1; font-size: 11px; }
.response-note i { flex: 0 0 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: var(--lime); }
.response-note strong { display: block; color: #fff; }
.contact-form-card { padding: 52px; background: var(--blue); color: #fff; }
.form-intro > span { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.form-intro h2 { max-width: 520px; margin: 13px 0 35px; font-size: 38px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-card label { display: block; margin-bottom: 18px; }
.contact-form-card label > span { display: block; margin-bottom: 7px; color: #d9e0ff; font-size: 11px; font-weight: 650; }
.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 11px;
    outline: 0;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 14px;
    transition: border .2s, background .2s;
}
.contact-form-card select option, .contact-form-card select optgroup { color: var(--ink); }
.contact-form-card input::placeholder, .contact-form-card textarea::placeholder { color: rgba(255, 255, 255, .55); }
.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus { border-color: var(--lime); background: rgba(255, 255, 255, .14); }
.contact-form-card textarea { resize: vertical; }
.form-privacy { display: block; margin-top: 15px; color: #c8d1ff; font-size: 10px; text-align: center; }
.form-privacy a { text-decoration: underline; }
.honey { position: absolute !important; left: -9999px !important; width: 1px !important; }
.form-errors { margin-bottom: 24px; padding: 14px 17px; border-radius: 10px; background: #ffe3dd; color: #8c2f20; font-size: 12px; }
.form-errors ul { margin: 5px 0 0; padding-left: 18px; }

/* Journal and legal */
.journal-hero, .legal-hero { padding: 175px 0 100px; }
.journal-hero h1, .legal-hero h1 { max-width: 1000px; margin: 25px 0; font-size: clamp(62px, 7.5vw, 104px); letter-spacing: -.075em; }
.journal-hero p, .legal-hero p { max-width: 650px; color: var(--ink-soft); font-size: 19px; }
.journal-list { padding-top: 20px; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.journal-card { display: flex; flex-direction: column; }
.journal-visual { position: relative; height: 290px; margin-bottom: 25px; overflow: hidden; border-radius: 20px; background: var(--ink); }
.journal-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 17, .08), transparent 45%, rgba(8, 8, 17, .48));
    content: "";
    pointer-events: none;
}
.journal-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .35s; }
.journal-card:hover .journal-visual img { filter: saturate(1.08); transform: scale(1.045); }
.journal-visual span {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    background: rgba(8, 8, 17, .62);
    color: #fff;
    font-family: var(--mono);
    font-size: 9px;
    backdrop-filter: blur(10px);
}
.journal-visual i {
    position: absolute;
    z-index: 2;
    right: 17px;
    bottom: 17px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 100px;
    background: rgba(8, 8, 17, .68);
    color: #fff;
    font-family: var(--mono);
    font-size: 8px;
    font-style: normal;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    transition: background .2s, color .2s;
}
.journal-card:hover .journal-visual i { background: var(--lime); color: var(--ink); }
.journal-meta { display: flex; justify-content: space-between; color: #737a85; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.journal-card h2 { margin: 17px 0 12px; font-size: 27px; line-height: 1.2; }
.journal-card p { color: #666d77; font-size: 14px; }
.journal-card > strong { margin-top: auto; color: var(--blue); font-size: 13px; }
.journal-card > strong span { float: right; }
.article-page-new { padding: 165px 0 120px; }
.article-header-new { max-width: 940px; }
.back-link { display: block; margin-bottom: 60px; color: #666d77; font-size: 13px; }
.article-header-new h1 { margin: 22px 0; font-size: clamp(53px, 6vw, 83px); letter-spacing: -.065em; }
.article-header-new > p { max-width: 780px; color: var(--ink-soft); font-size: 20px; }
.article-meta-new { display: flex; gap: 12px; align-items: center; color: #7c838d; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.article-meta-new i { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }
.article-hero-image {
    position: relative;
    height: min(56vw, 680px);
    margin-top: 70px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--ink);
}
.article-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-image figcaption {
    position: absolute;
    bottom: 22px;
    left: 22px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 100px;
    background: rgba(8, 8, 17, .68);
    color: #fff;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}
.article-divider { margin-top: 55px; border-top: 1px solid var(--line); }
.article-body-new { width: min(830px, calc(100% - 64px)); margin: 75px auto 0; }
.article-body-new > section { display: grid; grid-template-columns: 45px 1fr; gap: 25px; margin-bottom: 60px; }
.article-body-new > section > span { color: var(--blue); font-family: var(--mono); font-size: 10px; }
.article-body-new h2 { margin-bottom: 16px; font-size: 34px; }
.article-body-new p { color: #525964; font-size: 17px; line-height: 1.85; }
.article-sources > div > div { border-top: 1px solid var(--line); }
.article-sources a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}
.article-sources a i { font-style: normal; }
.article-related { margin-top: 80px; padding: 34px; border: 1px solid var(--line); background: #fff; }
.article-related > .kicker { margin-bottom: 24px; }
.article-related > div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.article-related a {
    position: relative;
    display: flex;
    min-height: 115px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: var(--paper);
    transition: background .2s;
}
.article-related a:hover { background: var(--ice); }
.article-related small { color: #82818b; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.article-related strong { margin-top: 4px; font-size: 15px; }
.article-related a > i { position: absolute; top: 16px; right: 16px; font-style: normal; }
.article-body-new aside { margin-top: 90px; padding: 45px; border-radius: 22px; background: var(--ink); color: #fff; }
.article-body-new aside h3 { max-width: 560px; margin: 17px 0 28px; font-size: 37px; }
.legal-hero { padding-bottom: 55px; }
.legal-hero h1 { font-size: clamp(55px, 6vw, 82px); }
.legal-copy-new { padding: 40px 0 120px; }
.legal-copy-new .container { max-width: 830px; }
.legal-copy-new h2 { margin: 48px 0 12px; font-size: 27px; }
.legal-copy-new p { color: #555c67; font-size: 16px; line-height: 1.85; }
.legal-copy-new a { color: var(--blue); text-decoration: underline; }

/* Footer */
.site-footer { padding: 105px 0 30px; background: var(--ink); color: #fff; }
.footer-lead { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; padding-bottom: 80px; border-bottom: 1px solid #343842; }
.footer-lead .kicker { grid-column: 1 / -1; }
.footer-lead h2 { margin: 0; font-size: clamp(47px, 6vw, 78px); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .55fr .7fr 1fr; gap: 60px; padding: 70px 0; }
.brand-light .brand-mark i, .site-footer .brand-mark i { border-color: #fff; }
.brand-light .brand-name span, .site-footer .brand-name span { color: #929ba9; }
.footer-brand > p { max-width: 340px; margin: 25px 0; color: #9ca5b2; font-size: 13px; }
.footer-contact { display: block; margin: 7px 0; font-size: 13px; }
.footer-grid h3 { margin-bottom: 24px; color: #79828f; font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { display: block; margin: 11px 0; color: #c7ccd4; font-size: 13px; }
.footer-offices div { margin-bottom: 24px; }
.footer-offices strong, .footer-offices span { display: block; }
.footer-offices strong { font-size: 13px; }
.footer-offices span { max-width: 240px; margin-top: 4px; color: #8f98a5; font-size: 11px; }
.footer-trust {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 21px 0;
    border-top: 1px solid #343842;
    color: #89929f;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.footer-trust i { width: 3px; height: 3px; border-radius: 50%; background: var(--lime); }
.footer-trust a { margin-left: auto; color: #d5ff49; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; padding-top: 25px; border-top: 1px solid #343842; color: #747d89; font-size: 10px; }
.footer-bottom > span:nth-child(2) { text-align: center; }
.footer-bottom div { display: flex; justify-content: flex-end; gap: 24px; }

/* 2026 editorial home */
.page-home {
    --nova-night: #080811;
    --nova-night-soft: #11111d;
    --nova-violet: #6f63ff;
    --nova-violet-bright: #8f86ff;
    --nova-lilac: #b9b2ff;
    --nova-mist: #efeff4;
    --nova-line: rgba(255, 255, 255, .14);
    --display: "Space Grotesk", var(--sans);
    background: var(--nova-night);
}
.page-home main { overflow: clip; }
.page-home .site-grain { z-index: 200; opacity: .035; mix-blend-mode: soft-light; }
.page-home .site-header { color: #fff; }
.page-home .site-header.scrolled {
    background: rgba(8, 8, 17, .8);
    border-color: rgba(255, 255, 255, .1);
}
.page-home .brand-mark i { border-color: #fff; }
.page-home .brand-name span { color: #858394; }
.page-home .site-nav > a:not(.nav-cta) { color: #aaa8b4; }
.page-home .site-nav > a:not(.nav-cta):hover,
.page-home .site-nav > a.active { color: #fff; }
.page-home .nav-cta { background: #fff; color: var(--nova-night); }
.page-home .nav-cta span { color: var(--nova-violet); }
.page-home .nav-toggle span { background: #fff; }
.nova-hero {
    position: relative;
    min-height: 1080px;
    padding: 154px 0 82px;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 24%, rgba(78, 66, 255, .2), transparent 25%),
        linear-gradient(180deg, #080811 0%, #0a0913 100%);
    color: #fff;
}
.nova-hero:before {
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
    content: "";
}
.nova-orb {
    position: absolute;
    border: 1px solid rgba(145, 135, 255, .2);
    border-radius: 50%;
    pointer-events: none;
}
.nova-orb:before,
.nova-orb:after {
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(145, 135, 255, .13);
    border-radius: inherit;
    content: "";
}
.nova-orb:after { inset: 29%; }
.nova-orb-one { top: -500px; right: -300px; width: 940px; height: 940px; animation: nova-spin 38s linear infinite; }
.nova-orb-two { bottom: -420px; left: -300px; width: 720px; height: 720px; animation: nova-spin 46s linear infinite reverse; }
.nova-hero-shell { position: relative; z-index: 2; }
.nova-hero-top,
.nova-section-label,
.nova-stage-index,
.nova-project-copy > div,
.nova-closing-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.nova-eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.nova-eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--nova-violet-bright);
    box-shadow: 0 0 0 5px rgba(143, 134, 255, .12);
}
.nova-location { color: #8d8b98; }
.nova-location b { margin: 0 10px; color: #fff; }
.nova-title { position: relative; z-index: 3; margin: 66px 0 -48px; }
.nova-title h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(76px, 10.2vw, 148px);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .82;
}
.nova-title h1 > span { display: block; color: #fff; }
.nova-title-accent { padding-left: 13.5%; }
.nova-title h1 em,
.nova-closing h2 em {
    color: var(--nova-violet-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.06em;
}
.nova-hero-stage {
    position: relative;
    height: min(48vw, 610px);
    min-height: 480px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 3px;
    background: #070711;
    box-shadow: 0 50px 120px rgba(0, 0, 0, .45);
}
.nova-hero-stage:after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7,7,17,.8), transparent 34%, transparent 75%, rgba(7,7,17,.25));
    pointer-events: none;
    content: "";
}
.nova-hero-stage > img {
    height: 118%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, -5%, 0) scale(1.03);
    transition: transform .15s linear;
    filter: saturate(.88) contrast(1.05);
}
.nova-stage-glow {
    position: absolute;
    z-index: 1;
    top: 42%;
    left: 54%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(95, 78, 255, .35);
    filter: blur(80px);
    transform: translate(-50%, -50%);
    animation: nova-pulse 4s ease-in-out infinite;
}
.nova-stage-index {
    position: absolute;
    z-index: 2;
    top: 22px;
    right: 24px;
    left: 24px;
    color: rgba(255, 255, 255, .6);
}
.nova-stage-index span:first-child { color: #fff; }
.nova-stage-note {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 28px;
    max-width: 305px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .13);
    background: rgba(8, 8, 17, .64);
    backdrop-filter: blur(15px);
}
.nova-stage-note span {
    color: var(--nova-lilac);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.nova-stage-note p { margin: 8px 0 0; color: #d1cfda; font-size: 11px; line-height: 1.55; }
.nova-play,
.nova-circle-link {
    position: absolute;
    z-index: 3;
    display: flex;
    width: 132px;
    height: 132px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--nova-violet);
    color: #fff;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), background .2s;
}
.nova-play { right: 6%; bottom: 8%; }
.nova-play:hover,
.nova-circle-link:hover { transform: rotate(-8deg) scale(1.06); background: var(--nova-violet-bright); }
.nova-play span,
.nova-circle-link span { font-size: 12px; font-weight: 700; line-height: 1.25; }
.nova-play i,
.nova-circle-link i { position: absolute; top: 27px; right: 30px; font-style: normal; }
.nova-hero-bottom {
    display: grid;
    grid-template-columns: minmax(280px, 520px) auto;
    gap: 50px;
    align-items: end;
    justify-content: space-between;
    margin-top: 34px;
}
.nova-hero-bottom p { margin: 0; color: #aaa8b4; font-size: 17px; }
.nova-text-link {
    display: inline-flex;
    gap: 40px;
    align-items: center;
    padding: 0 0 8px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
}
.nova-text-link span { transition: transform .2s; }
.nova-text-link:hover span { transform: translate(4px, -4px); }
.nova-marquee {
    overflow: hidden;
    border-top: 1px solid #292837;
    border-bottom: 1px solid #292837;
    background: var(--nova-night);
    color: #fff;
}
.nova-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    padding: 22px 0;
    animation: nova-marquee 25s linear infinite;
}
.nova-marquee span {
    padding: 0 30px;
    font-family: var(--display);
    font-size: 15px;
    text-transform: uppercase;
}
.nova-marquee i { color: var(--nova-violet-bright); font-style: normal; }
.nova-intro {
    padding: 120px 0;
    background: var(--nova-mist);
    color: var(--nova-night);
}
.nova-section-label {
    padding-bottom: 20px;
    border-bottom: 1px solid currentColor;
    opacity: .6;
}
.nova-section-label i { font-style: normal; }
.nova-intro-grid {
    display: grid;
    grid-template-columns: .38fr 1fr;
    gap: 9vw;
    align-items: center;
    padding: 105px 0 110px;
}
.nova-intro-mark {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 1;
    animation: nova-float 6s ease-in-out infinite;
}
.nova-intro-mark span {
    position: absolute;
    inset: 0;
    border: 1px solid #b8b7c1;
    border-radius: 50%;
}
.nova-intro-mark span:nth-child(2) { inset: 12%; border-color: var(--nova-violet); }
.nova-intro-mark span:nth-child(3) { inset: 28%; background: var(--nova-violet); border: 0; }
.nova-intro-mark b {
    position: absolute;
    inset: 28%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--display);
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 500;
}
.nova-intro-copy h2,
.nova-services-head h2,
.nova-work-head h2,
.nova-process-title h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(56px, 7.2vw, 104px);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .93;
}
.nova-intro-copy h2 span,
.nova-services-head h2 span,
.nova-work-head h2 span { color: var(--nova-violet); }
.nova-intro-copy > div {
    position: relative;
    display: grid;
    grid-template-columns: minmax(250px, 470px) 140px;
    gap: 65px;
    align-items: center;
    margin-top: 62px;
}
.nova-intro-copy p { margin: 0; color: #5d5c67; font-size: 17px; }
.nova-intro-copy .nova-circle-link { position: relative; width: 118px; height: 118px; }
.nova-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #c8c7cf;
    border-bottom: 1px solid #c8c7cf;
}
.nova-proof > div {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    padding: 30px 35px;
    border-right: 1px solid #c8c7cf;
}
.nova-proof > div:last-child { border-right: 0; }
.nova-proof strong {
    font-family: var(--display);
    font-size: clamp(35px, 4vw, 56px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: 1;
}
.nova-proof span { color: #6d6c76; font-size: 11px; line-height: 1.4; }
.nova-expertise {
    padding: 0 0 120px;
    background: var(--nova-mist);
    color: var(--nova-night);
}
.nova-expertise-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 20px; }
.nova-stack-panel,
.nova-trust-panel {
    min-height: 560px;
    padding: 55px;
    border-radius: 24px;
}
.nova-stack-panel { background: #fff; }
.nova-panel-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .58;
}
.nova-stack-panel h2 {
    margin: 75px 0 24px;
    font-family: var(--display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .94;
}
.nova-stack-panel h2 em { color: var(--nova-violet); font-style: normal; }
.nova-stack-panel > p { max-width: 620px; margin: 0; color: #64636d; font-size: 15px; }
.nova-stack-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 46px; }
.nova-stack-list span {
    padding: 10px 14px;
    border: 1px solid #d5d4dc;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 9px;
    transition: border .2s, background .2s, color .2s;
}
.nova-stack-list span:hover { border-color: var(--nova-violet); background: var(--nova-violet); color: #fff; }
.nova-trust-panel {
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 75% 18%, rgba(143, 134, 255, .32), transparent 30%),
        var(--nova-night);
    color: #fff;
}
.nova-trust-mark {
    position: relative;
    display: grid;
    width: 105px;
    height: 105px;
    margin: 68px 0 45px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
}
.nova-trust-mark::after { position: absolute; inset: 13px; border: 1px solid var(--nova-violet-bright); border-radius: 50%; content: ""; }
.nova-trust-mark i { position: absolute; width: 36px; height: 43px; border: 2px solid #fff; border-radius: 8px 8px 12px 12px; }
.nova-trust-mark i::before { position: absolute; top: -19px; left: 7px; width: 18px; height: 23px; border: 2px solid #fff; border-bottom: 0; border-radius: 13px 13px 0 0; content: ""; }
.nova-trust-mark span { z-index: 1; margin-top: 4px; color: var(--lime); font-size: 13px; }
.nova-trust-panel h3 { margin: 0 0 18px; font-family: var(--display); font-size: 34px; font-weight: 500; line-height: 1.08; }
.nova-trust-panel p { margin: 0 0 30px; color: #aaa8b4; font-size: 13px; }
.nova-trust-panel > a {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.nova-services {
    padding: 118px 0 130px;
    background: #fff;
    color: var(--nova-night);
}
.nova-services-head {
    display: grid;
    grid-template-columns: 1.2fr .45fr;
    gap: 80px;
    align-items: end;
    padding: 88px 0 85px;
}
.nova-services-head p { margin: 0; color: #666570; font-size: 16px; }
.nova-service-list { border-top: 1px solid #d9d8df; }
.nova-service-row {
    display: grid;
    grid-template-columns: 55px 1.15fr 1fr 80px 26px;
    gap: 35px;
    align-items: center;
    padding: 30px 8px;
    border-bottom: 1px solid #d9d8df;
    transition: padding .3s, color .25s, background .25s;
}
.nova-service-row:hover {
    padding-right: 20px;
    padding-left: 20px;
    background: var(--nova-night);
    color: #fff;
}
.nova-service-index,
.nova-service-tag {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .5;
}
.nova-service-row h3 { margin: 0; font-family: var(--display); font-size: 25px; font-weight: 500; }
.nova-service-row p { margin: 0; color: #74737d; font-size: 12px; }
.nova-service-row:hover p { color: #aaa8b4; }
.nova-service-row > i { font-style: normal; font-size: 18px; }
.nova-work {
    padding: 118px 0 140px;
    background: var(--nova-night);
    color: #fff;
}
.nova-work-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 82px 0 75px;
}
.nova-work-head .nova-text-link { margin-bottom: 8px; }
.nova-projects { display: grid; grid-template-columns: 1fr 1fr; gap: 76px 24px; }
.nova-project { display: block; }
.nova-project:nth-child(even) { transform: translateY(90px); }
.nova-project-visual {
    position: relative;
    display: grid;
    height: 510px;
    place-items: center;
    overflow: hidden;
    background: #6f63ff;
}
.nova-project-2 .nova-project-visual { background: #d5ff49; color: #0a0a12; }
.nova-project-3 .nova-project-visual { background: #ef755e; color: #0a0a12; }
.nova-project-4 .nova-project-visual { background: #d9d5ff; color: #0a0a12; }
.nova-project-5 .nova-project-visual { background: #58d6c6; color: #0a0a12; }
.nova-project-visual:before,
.nova-project-visual:after { content: none; }
.nova-project-no,
.nova-project-arrow {
    position: absolute;
    z-index: 3;
    top: 24px;
    font-family: var(--mono);
    font-size: 9px;
}
.nova-project-no {
    left: 24px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 100px;
    background: rgba(8,8,17,.46);
    color: #fff;
    backdrop-filter: blur(10px);
}
.nova-project-arrow {
    right: 24px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(8,8,17,.34);
    color: #fff;
    backdrop-filter: blur(10px);
    font-size: 16px;
    transition: transform .3s, background .3s;
}
.nova-project:hover .nova-project-arrow { transform: rotate(45deg); background: #fff; color: #0a0a12; }
.nova-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s cubic-bezier(.2,.8,.2,1), filter .4s;
}
.nova-project:hover .nova-project-image { transform: scale(1.045); filter: saturate(1.06); }
.nova-project-copy { padding: 22px 2px 0; }
.nova-project-copy > div { color: #777582; }
.nova-project-copy h3 { margin: 14px 0 8px; font-family: var(--display); font-size: 36px; font-weight: 500; }
.nova-project-copy p { max-width: 550px; margin: 0; color: #9694a0; font-size: 13px; }
.nova-process {
    padding: 120px 0;
    background: var(--nova-mist);
    color: var(--nova-night);
}
.nova-process-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 9vw;
    padding-top: 95px;
}
.nova-process-title { position: sticky; top: 120px; align-self: start; }
.nova-process-title p { max-width: 390px; margin-top: 30px; color: #666570; }
.nova-process-steps { border-top: 1px solid #c8c7cf; }
.nova-process-steps article {
    display: grid;
    grid-template-columns: 48px 1fr 28px;
    gap: 28px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid #c8c7cf;
}
.nova-process-steps article > span {
    padding-top: 8px;
    color: var(--nova-violet);
    font-family: var(--mono);
    font-size: 9px;
}
.nova-process-steps h3 { margin: 0 0 8px; font-family: var(--display); font-size: 31px; font-weight: 500; }
.nova-process-steps p { max-width: 530px; margin: 0; color: #696873; font-size: 13px; }
.nova-process-steps i { font-size: 20px; font-style: normal; }
.nova-closing {
    padding: 110px 0 55px;
    background:
        radial-gradient(circle at 70% 40%, rgba(143, 134, 255, .2), transparent 26%),
        var(--nova-violet);
    color: #fff;
}
.nova-closing .nova-section-label { color: #fff; }
.nova-closing-copy { position: relative; padding: 95px 0 110px; }
.nova-closing-copy > span {
    display: block;
    margin-bottom: 28px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.nova-closing h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(68px, 9vw, 132px);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .85;
}
.nova-closing h2 em { color: #d5d1ff; }
.nova-closing .nova-circle-link {
    top: 54%;
    right: 3%;
    width: 154px;
    height: 154px;
    background: #fff;
    color: var(--nova-night);
}
.nova-closing .nova-circle-link:hover { background: var(--nova-night); color: #fff; }
.nova-closing-meta { padding-top: 26px; border-top: 1px solid rgba(255,255,255,.35); }
.page-home .site-footer { padding-top: 75px; }
.page-home .site-footer .footer-lead { display: none; }

@keyframes nova-marquee {
    to { transform: translateX(-50%); }
}
@keyframes nova-spin {
    to { transform: rotate(360deg); }
}
@keyframes nova-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}
@keyframes nova-pulse {
    0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(.82); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.16); }
}

/* Motion */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.delay-one { transition-delay: .1s; }
.js .reveal.delay-two { transition-delay: .2s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
    .container { width: min(100% - 42px, 1240px); }
    .home-hero-grid, .inner-hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .home-hero-copy h1, .inner-hero-copy h1 { font-size: 62px; }
    .home-hero-media { min-height: 560px; }
    .systems-grid { gap: 45px; }
    .services-grid-new { grid-template-columns: 1fr 1fr; }
    .specialist-grid-new { grid-template-columns: 1fr 1fr; }
    .workflow-card, .principle-card, .offices-card { padding: 48px; gap: 45px; }
    .contact-layout { grid-template-columns: .9fr 1.1fr; }
    .contact-panel, .contact-form-card { padding: 38px; }
    .footer-grid { grid-template-columns: 1.2fr .6fr .8fr; }
    .footer-offices { grid-column: 1 / -1; display: flex; gap: 50px; }
    .footer-offices h3 { width: 100%; }
    .detail-hero-grid { gap: 42px; }
    .detail-product-visual, .service-detail-media { min-height: 510px; }
    .detail-overview-grid { gap: 65px; }
    .detail-delivery-grid { gap: 60px; }
    .nova-hero { min-height: auto; }
    .nova-title { margin-bottom: -34px; }
    .nova-hero-stage { min-height: 450px; }
    .nova-intro-grid { grid-template-columns: .42fr 1fr; gap: 7vw; }
    .nova-stack-panel, .nova-trust-panel { padding: 44px; }
    .nova-services-head { grid-template-columns: 1fr .48fr; }
    .nova-project-visual { height: 430px; }
    .nova-service-row { grid-template-columns: 46px 1fr .85fr 55px 22px; gap: 22px; }
}

@media (max-width: 820px) {
    .section { padding: 90px 0; }
    .site-header, .site-header.scrolled { height: 70px; }
    .nav-toggle { display: block; }
    .site-nav {
        position: fixed;
        inset: 70px 0 0;
        display: flex;
        padding: 35px 24px 50px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--paper);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: .25s;
    }
    .site-nav.open { opacity: 1; visibility: visible; transform: none; }
    .site-nav > a:not(.nav-cta) { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 19px; }
    .nav-cta { justify-content: space-between; margin-top: 24px; padding: 17px 20px; }
    .nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
    .nav-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .home-hero { padding-top: 115px; }
    .home-hero-grid, .inner-hero-grid, .systems-grid, .local-grid, .about-story-grid, .simple-cta-grid { grid-template-columns: 1fr; }
    .home-hero-copy h1, .inner-hero-copy h1 { font-size: clamp(53px, 11vw, 76px); }
    .home-hero-media { min-height: 520px; }
    .capability-line { align-items: flex-start; }
    .capability-line div { flex-wrap: wrap; justify-content: flex-start; }
    .section-head, .section-head.compact { grid-template-columns: 1fr; gap: 24px; }
    .product-tile-1, .product-tile-2, .product-tile-3, .product-tile-4 { grid-column: span 6; }
    .product-tile { min-height: 380px; }
    .systems-image { order: 2; }
    .systems-image img { min-height: 480px; }
    .workflow-card, .principle-card, .ready-product-grid, .offices-card { grid-template-columns: 1fr; }
    .office-mini-grid { max-width: 650px; }
    .product-hero-image img, .service-hero-image img { height: 500px; }
    .flagship-grid, .digital-offer-grid, .engagement-grid, .journal-grid { grid-template-columns: 1fr 1fr; }
    .engagement-grid article:last-child, .journal-card:last-child { grid-column: 1 / -1; }
    .article-hero-image { height: 58vw; min-height: 430px; }
    .about-hero-image { height: 530px; }
    .belief-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-panel { min-height: 620px; }
    .footer-lead { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-offices { grid-column: 1 / -1; flex-wrap: wrap; }
    .footer-offices h3 { margin-bottom: 0; }
    .detail-hero { padding-top: 95px; }
    .detail-hero-grid { grid-template-columns: 1fr; }
    .detail-hero-copy { max-width: 720px; }
    .detail-product-visual, .service-detail-media { min-height: 540px; }
    .detail-feature-line, .service-detail-page .detail-feature-line { grid-template-columns: 1fr 1fr; }
    .detail-feature-line > span:nth-child(2) { border-right: 0; }
    .detail-feature-line > span { border-bottom: 1px solid var(--line); }
    .detail-overview-grid { grid-template-columns: .7fr 1.3fr; gap: 45px; }
    .detail-module-grid { grid-template-columns: 1fr 1fr; }
    .detail-delivery-grid { gap: 45px; }
    .detail-reading-grid { grid-template-columns: 1fr 1fr; }
    .detail-more-grid { grid-template-columns: repeat(3, 1fr); }
    .detail-more-card { min-height: 260px; }
    .page-home .site-nav {
        background: rgba(8, 8, 17, .98);
        color: #fff;
    }
    .page-home .site-nav > a:not(.nav-cta) {
        border-color: rgba(255, 255, 255, .13);
        color: #cbc9d3;
    }
    .page-home .site-nav > a.active { color: #fff; }
    .page-home .nav-cta { background: var(--nova-violet); color: #fff; }
    .nova-hero { padding-top: 125px; }
    .nova-title { margin: 55px 0 -24px; }
    .nova-title h1 { font-size: clamp(64px, 13vw, 100px); }
    .nova-title-accent { padding-left: 8%; }
    .nova-hero-stage { height: 58vw; min-height: 430px; }
    .nova-stage-note { max-width: 270px; }
    .nova-play { width: 108px; height: 108px; }
    .nova-play i { top: 21px; right: 23px; }
    .nova-intro,
    .nova-services,
    .nova-work,
    .nova-process { padding: 90px 0; }
    .nova-intro-grid {
        grid-template-columns: 220px 1fr;
        gap: 50px;
        padding: 78px 0;
    }
    .nova-intro-copy h2,
    .nova-services-head h2,
    .nova-work-head h2,
    .nova-process-title h2 { font-size: clamp(52px, 9vw, 78px); }
    .nova-intro-copy > div { grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
    .nova-intro-copy .nova-circle-link { width: 100px; height: 100px; }
    .nova-proof > div { display: block; padding: 24px 20px; }
    .nova-proof span { display: block; margin-top: 8px; }
    .nova-expertise-grid { grid-template-columns: 1fr; }
    .nova-stack-panel, .nova-trust-panel { min-height: 0; }
    .nova-trust-panel { min-height: 500px; }
    .nova-stack-panel h2 { margin-top: 55px; }
    .nova-services-head { grid-template-columns: 1fr; gap: 35px; padding: 70px 0 60px; }
    .nova-services-head p { max-width: 520px; }
    .nova-service-row { grid-template-columns: 40px 1fr 23px; gap: 18px; }
    .nova-service-row p,
    .nova-service-tag { display: none; }
    .nova-work-head { padding: 68px 0 58px; }
    .nova-projects { gap: 58px 18px; }
    .nova-project:nth-child(even) { transform: translateY(55px); }
    .nova-project-visual { height: 330px; }
    .nova-project-copy h3 { font-size: 29px; }
    .nova-process-grid { grid-template-columns: .7fr 1.3fr; gap: 55px; padding-top: 70px; }
    .nova-closing { padding-top: 85px; }
    .nova-closing .nova-circle-link { width: 124px; height: 124px; }
}

@media (max-width: 580px) {
    .container { width: calc(100% - 32px); }
    .section { padding: 72px 0; }
    .brand-name { font-size: 21px; }
    .home-hero-copy h1, .inner-hero-copy h1, .about-intro h1, .contact-heading h1, .journal-hero h1 { font-size: 48px; }
    .home-hero-copy > p, .inner-hero-copy > p, .contact-heading > p { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .home-hero-media { min-height: 440px; }
    .home-hero-media > img { object-position: 61% center; }
    .availability-card { top: 15px; left: 15px; }
    .media-label { right: 15px; bottom: 15px; }
    .capability-line { display: block; }
    .capability-line > span { display: block; margin-bottom: 15px; }
    .capability-line div { display: grid; grid-template-columns: 1fr 1fr; }
    .section-head h2, .section-head.compact h2, .systems-copy h2, .local-copy h2 { font-size: 40px; }
    .product-tile-1, .product-tile-2, .product-tile-3, .product-tile-4 { grid-column: 1 / -1; }
    .product-tile { min-height: 360px; padding: 27px; }
    .product-tile h3 { font-size: 31px; }
    .systems-image img { min-height: 380px; }
    .capability-item { grid-template-columns: 36px 1fr 25px; gap: 12px; }
    .capability-item p { display: none; }
    .capability-item h3 { font-size: 20px; }
    .workflow-card, .principle-card, .ready-product-grid, .offices-card { padding: 30px 24px; border-radius: 22px; }
    .workflow-intro h2, .principle-card h2, .ready-product h2, .offices-intro h2 { font-size: 39px; }
    .office-mini-grid, .office-list { grid-template-columns: 1fr; }
    .inner-hero { padding: 120px 0 55px; }
    .product-hero-image img, .service-hero-image img { height: 390px; }
    .product-category-line { flex-wrap: wrap; gap: 14px 25px; justify-content: flex-start; }
    .flagship-grid, .specialist-grid-new, .digital-offer-grid, .services-grid-new, .engagement-grid, .journal-grid { grid-template-columns: 1fr; }
    .flagship-card { padding: 28px; }
    .flagship-card h2 { font-size: 34px; }
    .flagship-card ul { grid-template-columns: 1fr; }
    .engagement-grid article:last-child, .journal-card:last-child { grid-column: auto; }
    .about-intro { padding-top: 120px; }
    .about-hero-image { height: 430px; margin-top: 45px; }
    .about-hero-image img { object-position: 60% center; }
    .about-story h2 { font-size: 41px; }
    .about-story-copy .lead { font-size: 19px; }
    .belief-grid { grid-template-columns: 1fr; }
    .belief-grid article { min-height: 270px; }
    .contact-page-new { padding: 120px 0 75px; }
    .contact-heading { margin-bottom: 45px; }
    .contact-panel, .contact-form-card { padding: 28px 22px; }
    .contact-panel { min-height: 650px; }
    .field-grid { grid-template-columns: 1fr; gap: 0; }
    .form-intro h2 { font-size: 31px; }
    .journal-hero, .legal-hero { padding: 130px 0 60px; }
    .journal-visual { height: 315px; }
    .article-page-new { padding: 125px 0 80px; }
    .article-header-new h1 { font-size: 45px; }
    .article-meta-new { flex-wrap: wrap; }
    .article-hero-image { height: 300px; min-height: 0; margin-top: 42px; border-radius: 17px; }
    .article-hero-image figcaption { right: 16px; bottom: 16px; left: 16px; width: fit-content; }
    .article-divider { margin-top: 38px; }
    .article-body-new { width: calc(100% - 32px); margin-top: 50px; }
    .article-body-new > section { grid-template-columns: 1fr; gap: 8px; }
    .article-related { padding: 24px 20px; }
    .article-related > div { grid-template-columns: 1fr; }
    .article-body-new aside { padding: 30px 24px; }
    .article-body-new aside h3 { font-size: 31px; }
    .footer-lead { padding-bottom: 55px; }
    .footer-lead h2 { font-size: 43px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
    .footer-offices { display: block; }
    .footer-trust { flex-wrap: wrap; gap: 10px 12px; }
    .footer-trust a { width: 100%; margin: 7px 0 0; }
    .footer-bottom { grid-template-columns: 1fr; gap: 10px; }
    .footer-bottom > span:nth-child(2) { text-align: left; }
    .footer-bottom div { justify-content: flex-start; }
    .detail-hero { padding-top: 82px; }
    .detail-breadcrumb { overflow: hidden; white-space: nowrap; }
    .detail-hero-copy h1 { font-size: 48px; }
    .detail-product-visual, .service-detail-media { min-height: 390px; }
    .detail-feature-line, .service-detail-page .detail-feature-line { grid-template-columns: 1fr; }
    .detail-feature-line > span { min-height: 65px; border-right: 0; }
    .detail-feature-line > span:last-child { border-bottom: 0; }
    .detail-overview-grid { grid-template-columns: 1fr; gap: 45px; }
    .detail-sticky-title { position: static; }
    .detail-sticky-title h2 { font-size: 40px; }
    .detail-lead { font-size: 21px; }
    .detail-module-grid { grid-template-columns: 1fr; }
    .detail-module-grid article { min-height: 220px; }
    .detail-module-grid h3 { margin-top: 75px; }
    .detail-delivery-grid { grid-template-columns: 1fr; }
    .detail-delivery-intro h2 { font-size: 40px; }
    .detail-integration-panel { grid-column: auto; grid-template-columns: 1fr; gap: 22px; padding: 24px; }
    .detail-reading-grid, .detail-more-grid { grid-template-columns: 1fr; }
    .detail-reading-card { min-height: 300px; }
    .detail-more-card { min-height: 240px; }
    .service-detail-orbit { width: 130px; height: 130px; }
    .nova-hero { padding: 110px 0 54px; }
    .nova-hero-top { align-items: flex-start; }
    .nova-location { max-width: 115px; text-align: right; line-height: 1.55; }
    .nova-location b { display: none; }
    .nova-title { margin: 52px 0 -13px; }
    .nova-title h1 { font-size: clamp(53px, 16vw, 74px); line-height: .88; }
    .nova-title-accent { padding-left: 0; }
    .nova-hero-stage { height: 510px; min-height: 0; }
    .nova-hero-stage > img { width: 165%; max-width: none; object-position: 59% center; }
    .nova-stage-index { top: 16px; right: 16px; left: 16px; }
    .nova-stage-index span:last-child { display: none; }
    .nova-stage-note { right: 16px; bottom: 16px; left: 16px; max-width: none; padding: 15px 16px; }
    .nova-stage-note p { max-width: 250px; }
    .nova-play { right: 17px; bottom: 92px; width: 92px; height: 92px; }
    .nova-play span { font-size: 10px; }
    .nova-play i { top: 17px; right: 19px; }
    .nova-hero-bottom { grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
    .nova-hero-bottom p { font-size: 14px; }
    .nova-hero-bottom .nova-text-link { justify-self: start; }
    .nova-marquee-track { padding: 17px 0; }
    .nova-marquee span { padding: 0 20px; font-size: 12px; }
    .nova-intro,
    .nova-services,
    .nova-work,
    .nova-process { padding: 72px 0; }
    .nova-section-label { padding-bottom: 14px; }
    .nova-intro-grid { grid-template-columns: 1fr; gap: 45px; padding: 62px 0; }
    .nova-intro-mark { width: 190px; }
    .nova-intro-copy h2,
    .nova-services-head h2,
    .nova-work-head h2,
    .nova-process-title h2 { font-size: 48px; }
    .nova-intro-copy p { font-size: 15px; }
    .nova-intro-copy > div { margin-top: 30px; }
    .nova-proof { grid-template-columns: 1fr; }
    .nova-proof > div { display: flex; border-right: 0; border-bottom: 1px solid #c8c7cf; }
    .nova-proof > div:last-child { border-bottom: 0; }
    .nova-proof span { margin: 0; }
    .nova-expertise { padding-bottom: 72px; }
    .nova-stack-panel, .nova-trust-panel { padding: 30px 24px; border-radius: 18px; }
    .nova-stack-panel h2 { margin: 46px 0 20px; font-size: 45px; }
    .nova-stack-list { margin-top: 34px; }
    .nova-trust-panel { min-height: 470px; }
    .nova-trust-mark { margin: 55px 0 38px; }
    .nova-services-head { padding: 54px 0 45px; }
    .nova-service-row { padding: 24px 3px; }
    .nova-service-row:hover { padding-right: 12px; padding-left: 12px; }
    .nova-service-row h3 { font-size: 20px; line-height: 1.2; }
    .nova-work-head { display: block; padding: 52px 0 48px; }
    .nova-work-head .nova-text-link { margin-top: 28px; }
    .nova-projects { grid-template-columns: 1fr; gap: 54px; }
    .nova-project:nth-child(even) { transform: none; }
    .nova-project-visual { height: 360px; }
    .nova-project-copy h3 { font-size: 30px; }
    .nova-process-grid { grid-template-columns: 1fr; gap: 52px; padding-top: 55px; }
    .nova-process-title { position: static; }
    .nova-process-steps article { grid-template-columns: 35px 1fr 20px; gap: 14px; }
    .nova-process-steps h3 { font-size: 26px; }
    .nova-closing { padding: 70px 0 42px; }
    .nova-closing-copy { padding: 62px 0 165px; }
    .nova-closing h2 { font-size: 58px; line-height: .9; }
    .nova-closing .nova-circle-link { top: auto; right: auto; bottom: 28px; left: 0; width: 112px; height: 112px; }
    .nova-closing-meta { align-items: flex-start; gap: 20px; line-height: 1.6; }
    .nova-closing-meta a { text-align: right; }
    .page-home .site-footer { padding-top: 60px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js .reveal { opacity: 1; transform: none; transition: none; }
    .nova-marquee-track,
    .nova-orb,
    .nova-intro-mark,
    .nova-stage-glow { animation: none; }
}
