:root {
    --ink: #080808;
    --paper: #f4efe9;
    --white: #fff;
    --lime: #c9ff43;
    --orange: #f04a24;
    --muted: #6b6865;
    --line: rgba(8, 8, 8, .18);
    --container: 1180px;
    --radius: 48px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Kanit", sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.55;
    overflow-x: hidden;
}

body.menu-open,
body.search-open,
body.modal-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.08;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.7rem, 5vw, 5.7rem);
    font-weight: 500;
    letter-spacing: -.055em;
}

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

.page-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    height: 3px;
    pointer-events: none;
}

.page-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--lime);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    min-height: 84px;
    padding: 10px max(26px, calc((100vw - 1180px) / 2));
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    transition: box-shadow .3s, min-height .3s;
    backdrop-filter: blur(18px);
}

.site-header.scrolled {
    min-height: 72px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.brand {
    width: 162px;
}

.brand img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.main-navigation {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 2.5vw, 42px);
}

.main-navigation a {
    position: relative;
    padding: 27px 0 22px;
    font-size: 14px;
    font-weight: 400;
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-trigger {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 0;
    font-size: 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.search-trigger span {
    font-size: 24px;
}

.header-orbit {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 23px;
    transition: color .3s, background .3s, transform .3s;
}

.header-orbit:hover {
    color: var(--ink);
    background: var(--lime);
    transform: rotate(45deg);
}

.mobile-toggle {
    display: none;
}

.search-overlay {
    position: fixed;
    z-index: 300;
    inset: 0;
    display: grid;
    padding: 40px;
    place-items: center;
    color: white;
    background: rgba(6, 6, 6, .97);
}

.search-overlay[hidden] {
    display: none;
}

.search-overlay form {
    width: min(850px, 100%);
}

.search-overlay label {
    display: block;
    margin-bottom: 28px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -.05em;
}

.search-field {
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.search-field input,
.search-field button {
    padding: 18px 0;
    color: white;
    background: transparent;
    border: 0;
    outline: 0;
}

.search-field input {
    font-size: 1.5rem;
}

.search-field button {
    cursor: pointer;
}

.search-close {
    position: absolute;
    top: 34px;
    right: 42px;
    padding: 10px;
    color: white;
    font-size: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.eyebrow {
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.eyebrow::first-letter {
    color: var(--orange);
}

.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    color: white;
    background: #020202 var(--hero-bg) center / cover no-repeat;
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    background: radial-gradient(circle at 50% 45%, transparent 0, rgba(0, 0, 0, .12) 48%, rgba(0, 0, 0, .65) 100%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
    padding: 92px 0 70px;
}

.hero-email {
    position: absolute;
    z-index: 3;
    top: 34px;
    right: max(32px, calc((100vw - var(--container)) / 2));
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.hero-kicker {
    margin-bottom: 27px;
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
}

.hero h1 {
    display: flex;
    flex-direction: column;
    width: min(790px, 76%);
    margin-bottom: 40px;
    font-size: clamp(3.2rem, 6.5vw, 6.25rem);
    font-weight: 300;
    letter-spacing: -.055em;
}

.hero h1 strong {
    font-weight: 800;
}

.hero-description {
    width: min(490px, 46%);
    margin: -4px 10% 0 auto;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.5;
}

.outline-arrow {
    position: absolute;
    bottom: 92px;
    left: 0;
    display: grid;
    width: 110px;
    height: 110px;
    place-items: center;
    color: rgba(255, 255, 255, .55);
    border: 1px solid rgba(255, 255, 255, .28);
    font-size: 74px;
    font-weight: 100;
    line-height: 1;
    transition: color .3s, border .3s, transform .3s;
}

.outline-arrow:hover {
    color: var(--lime);
    border-color: var(--lime);
    transform: translate(6px, -6px);
}

.hero-accent {
    position: absolute;
    z-index: 1;
    top: 130px;
    right: 0;
    width: 27%;
    height: 42px;
    background: linear-gradient(90deg, #3b1b68, #5a2aa6);
}

.hero-robot {
    position: absolute;
    z-index: 2;
    right: 5%;
    bottom: 90px;
    width: 90px;
    max-height: 130px;
    object-fit: contain;
    opacity: .8;
    filter: grayscale(1);
}

.about-section {
    padding: 0 0 92px;
    background: var(--paper);
}

.about-visual {
    width: min(1100px, calc(100% - 60px));
    height: 520px;
    margin: 0 auto;
    overflow: hidden;
    background: #00143f;
}

.about-visual img {
    width: 100%;
    height: 100%;
    padding: 46px;
    object-fit: contain;
}

.about-copy {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    width: min(var(--container), calc(100% - 60px));
    margin: 0 auto;
    padding: 100px 0 60px;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
}

.about-copy > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.about-copy h2 {
    grid-column: 1 / -1;
    max-width: 1080px;
    margin-bottom: 28px;
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.about-copy > div:last-child > p:last-child {
    grid-column: 2;
    color: #52504f;
}

.orbit-badge {
    position: relative;
    display: grid;
    width: 180px;
    height: 180px;
    margin: 16px auto 0;
    place-items: center;
    background: white;
    border-radius: 50%;
}

.orbit-badge span {
    position: absolute;
    width: 138px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-align: center;
}

.orbit-badge b {
    font-size: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    width: min(var(--container), calc(100% - 60px));
    margin: 50px auto 0;
    background: rgba(0, 0, 0, .2);
}

.about-highlights div {
    display: flex;
    align-items: baseline;
    gap: 22px;
    padding: 34px;
    background: var(--paper);
}

.about-highlights strong {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.15fr .8fr auto;
    gap: 52px;
    align-items: end;
    width: min(var(--container), calc(100% - 60px));
    margin: 0 auto 58px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 18px;
}

.section-heading-dark {
    color: white;
}

.section-heading-dark > p {
    color: rgba(255, 255, 255, .8);
}

.services-section {
    position: relative;
    padding: 125px 0 105px;
    overflow: hidden;
    color: white;
    background: #060606 var(--services-bg) center top / cover no-repeat;
    border-radius: var(--radius) var(--radius) 0 0;
}

.services-section::after {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 190px;
    content: "";
    background: var(--lime);
}

.services-section > * {
    position: relative;
    z-index: 1;
}

.slider-controls {
    display: flex;
    align-items: center;
}

.slider-controls button,
.testimonial-nav button {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: white;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, .7);
    border-radius: 50%;
    font-size: 27px;
    cursor: pointer;
    transition: color .25s, background .25s;
}

.slider-controls button + button {
    margin-left: -1px;
}

.slider-controls button:hover,
.testimonial-nav button:hover {
    color: var(--ink);
    background: var(--lime);
}

.service-track {
    display: grid;
    grid-auto-columns: min(390px, calc(100vw - 50px));
    grid-auto-flow: column;
    gap: 25px;
    padding: 0 max(24px, calc((100vw - var(--container)) / 2));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.service-track::-webkit-scrollbar,
.team-track::-webkit-scrollbar {
    display: none;
}

.service-card {
    display: block;
    min-height: 420px;
    padding: 60px 54px 42px;
    color: var(--ink);
    background: white;
    border-radius: 12px;
    cursor: pointer;
    scroll-snap-align: start;
}

.service-icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin-bottom: 44px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 22px;
    font-size: 25px;
    line-height: 1.35;
}

.service-card p {
    min-height: 82px;
    color: #6d6b69;
}

.service-card-cta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-weight: 400;
}

.process-section {
    padding: 120px 0;
    color: white;
    background: #040404 var(--process-bg) center / cover no-repeat;
}

.process-section .section-heading.centered {
    grid-template-columns: 1fr;
    max-width: 880px;
    text-align: center;
}

.process-section .section-heading.centered > p {
    max-width: 680px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: min(var(--container), calc(100% - 60px));
    margin: 0 auto 110px;
}

.process-card {
    position: relative;
    padding: 0 0 0 32px;
}

.process-card img {
    width: 100%;
    height: 220px;
    margin-bottom: 30px;
    object-fit: cover;
    border-radius: 42px 0 42px 0;
    filter: grayscale(.2);
}

.process-card > span {
    position: absolute;
    top: -25px;
    left: 0;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    background: #242424;
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
}

.process-card h3 {
    margin-bottom: 14px;
    font-size: 24px;
}

.process-card p {
    color: rgba(255, 255, 255, .72);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    width: min(var(--container), calc(100% - 60px));
    margin: 0 auto;
}

.stat {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .15);
    text-align: center;
}

.stat strong {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px white;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-weight: 500;
    line-height: 1;
}

.stat span {
    font-size: 17px;
}

.testimonial-section {
    padding: 120px max(30px, calc((100vw - var(--container)) / 2));
    background: var(--lime);
}

.testimonial-shell {
    position: relative;
    min-height: 340px;
    padding: 70px;
    color: white;
    background: var(--ink);
    border-radius: var(--radius);
}

.testimonial-shell blockquote {
    display: none;
    margin: 0;
}

.testimonial-shell blockquote.active {
    display: block;
    animation: quoteIn .45s ease both;
}

@keyframes quoteIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
}

.testimonial-shell blockquote > p {
    max-width: 850px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 3.5rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -.04em;
}

.testimonial-shell blockquote footer {
    font-size: 17px;
    font-style: normal;
}

.testimonial-shell blockquote footer span {
    color: rgba(255, 255, 255, .55);
}

.testimonial-nav {
    position: absolute;
    right: 55px;
    bottom: 55px;
    display: flex;
}

.team-section {
    padding: 125px 0;
    background: var(--paper);
}

.team-track {
    display: grid;
    grid-auto-columns: minmax(250px, 1fr);
    grid-auto-flow: column;
    gap: 30px;
    padding: 0 max(28px, calc((100vw - var(--container)) / 2));
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.team-member {
    min-width: 260px;
    text-align: center;
    scroll-snap-align: start;
}

.team-photo {
    height: 430px;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 35px 35px 12px 35px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s, filter .5s;
}

.team-member:hover img {
    transform: scale(1.035);
}

.team-member h3 {
    margin-bottom: 4px;
    font-size: 23px;
}

.team-member p {
    color: #504e4b;
}

.client-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    min-height: 230px;
    color: rgba(255, 255, 255, .5);
    background: #080808 url("../images/image6.webp") center / cover;
}

.client-strip span {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, .13);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 2.4rem);
    letter-spacing: .12em;
}

.blog-section,
.blog-index {
    padding: 125px 0;
    background: white;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    width: min(var(--container), calc(100% - 60px));
    margin: 0 auto;
}

.post-image {
    position: relative;
    display: block;
    height: 280px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 22px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-image span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 7px 13px;
    background: white;
    border-radius: 30px;
    font-size: 13px;
}

.post-card h3 {
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 1.3;
}

.post-card > p {
    color: #676461;
    font-size: 15px;
}

.text-link {
    display: table;
    margin: 55px auto 0;
    padding-bottom: 5px;
    border-bottom: 1px solid;
    font-weight: 400;
}

.contact-section {
    position: relative;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 135px max(30px, calc((100vw - var(--container)) / 2));
    overflow: hidden;
    color: white;
    background: #0b0b0b;
    border-radius: var(--radius) var(--radius) 0 0;
}

.contact-copy h2 {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .42);
    font-size: clamp(3.1rem, 6vw, 6.8rem);
}

.contact-copy > p:last-child {
    max-width: 430px;
    color: rgba(255, 255, 255, .65);
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form label {
    display: block;
}

.contact-form label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.contact-form label > small {
    display: block;
    margin: -12px 0 15px;
    color: #ff8d8d;
    font-size: 12px;
}

.phone-input-group {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.auryx-3d .contact-form .phone-input-group input,
.auryx-3d .service-enquiry-form .phone-input-group input {
    min-width: 0;
    flex: 1 1 auto;
    margin-bottom: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.auryx-3d .contact-form .phone-input-group select,
.auryx-3d .service-enquiry-form .phone-input-group select {
    width: 112px;
    min-width: 112px;
    flex: 0 0 112px;
    margin-bottom: 0;
    padding-right: 10px;
    padding-left: 12px;
    color: white;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-right: 0;
    border-radius: 12px 0 0 12px;
    outline: 0;
    cursor: pointer;
}

.auryx-3d .contact-form .phone-input-group select:focus,
.auryx-3d .service-enquiry-form .phone-input-group select:focus {
    border-color: var(--neo-lime);
}

.auryx-3d .contact-form .phone-input-group option,
.auryx-3d .service-enquiry-form .phone-input-group option {
    color: white;
    background: #111319;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 19px 28px;
    color: white;
    background: #292929;
    border: 1px solid #4a4a4a;
    border-radius: 34px;
    outline: 0;
    transition: border .2s, background .2s;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    background: #303030;
    border-color: var(--lime);
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 28px;
    background: var(--lime);
    border: 0;
    border-radius: 34px;
    cursor: pointer;
}

.form-submit span {
    font-size: 24px;
}

.contact-art {
    position: absolute;
    z-index: -1;
    right: -70px;
    bottom: -80px;
    width: 480px;
    opacity: .6;
    pointer-events: none;
}

.form-success,
.form-error {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 10px;
}

.form-success {
    color: var(--ink);
    background: var(--lime);
}

.form-error {
    background: rgba(240, 74, 36, .2);
    border: 1px solid var(--orange);
}

.site-footer {
    position: relative;
    padding-top: 30px;
    overflow: hidden;
    color: white;
    background: #0b0b0b;
}

.site-footer::after {
    position: absolute;
    right: -10%;
    bottom: -270px;
    left: -10%;
    height: 470px;
    content: "";
    background: radial-gradient(ellipse, #ff4a21 0, #ba2d19 42%, transparent 72%);
    filter: blur(20px);
}

.footer-marquee {
    position: relative;
    z-index: 1;
    width: max-content;
    margin-left: -30px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .2);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 500;
    letter-spacing: -.06em;
    white-space: nowrap;
}

.footer-marquee span {
    color: white;
    -webkit-text-stroke: 0;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr .65fr .8fr;
    gap: 80px;
    width: min(var(--container), calc(100% - 60px));
    margin: 50px auto 90px;
}

.footer-cta {
    max-width: 460px;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.45;
}

.footer-label {
    color: rgba(255, 255, 255, .34);
    font-size: 18px;
}

.footer-email-label {
    margin-top: 44px;
    margin-bottom: 10px;
}

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

.footer-grid li {
    margin-bottom: 10px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 32px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    text-align: center;
}

.back-to-top {
    position: fixed;
    z-index: 90;
    right: 38px;
    bottom: 38px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    background: var(--lime);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.inner-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 450px;
    align-items: center;
    min-height: 650px;
    padding: 80px max(30px, calc((100vw - var(--container)) / 2));
    overflow: hidden;
    color: white;
    background: #050505 url("../images/image31.webp") center / cover;
}

.inner-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at 80% 50%, rgba(91, 42, 166, .32), transparent 30%);
}

.inner-hero-copy,
.inner-hero-art {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    max-width: 850px;
    margin-bottom: 28px;
    font-size: clamp(3.3rem, 6vw, 6.7rem);
    letter-spacing: -.06em;
}

.inner-hero-copy > p:last-child {
    max-width: 660px;
    color: rgba(255, 255, 255, .7);
    font-size: 20px;
}

.inner-hero-art {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.story-section,
.generic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 120px max(30px, calc((100vw - var(--container)) / 2));
    background: var(--paper);
}

.story-art {
    min-height: 520px;
    padding: 45px;
    overflow: hidden;
    background: #021345;
}

.story-art img {
    width: 100%;
    height: 430px;
    object-fit: contain;
}

.story-copy h2,
.generic-content h2 {
    font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.story-copy > p:last-of-type,
.generic-content p {
    color: #55514e;
    font-size: 18px;
}

.blog-search {
    display: flex;
    width: min(650px, calc(100% - 60px));
    margin: 0 auto 60px;
    border-bottom: 1px solid var(--ink);
}

.blog-search input,
.blog-search button {
    padding: 14px 0;
    background: transparent;
    border: 0;
    outline: 0;
}

.blog-search input {
    flex: 1;
    font-size: 20px;
}

.blog-search button {
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.article-page {
    padding-bottom: 120px;
    background: white;
}

.article-header {
    padding: 100px max(30px, calc((100vw - 1050px) / 2)) 60px;
}

.article-header h1 {
    margin-bottom: 25px;
    font-size: clamp(3.1rem, 6vw, 6.4rem);
    letter-spacing: -.06em;
}

.article-header > p:last-child {
    max-width: 720px;
    color: #666;
    font-size: 20px;
}

.article-image {
    width: min(1100px, calc(100% - 60px));
    max-height: 620px;
    margin: 0 auto 65px;
    object-fit: cover;
    border-radius: 30px;
}

.article-body {
    width: min(760px, calc(100% - 60px));
    margin: 0 auto;
    color: #494744;
    font-size: 20px;
    line-height: 1.8;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 180px 1fr auto;
    }

    .main-navigation {
        gap: 18px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .header-actions {
        gap: 12px;
    }

    .search-trigger {
        font-size: 0;
    }

    .section-heading {
        grid-template-columns: 1fr 1fr;
    }

    .section-heading .slider-controls {
        grid-column: 1 / -1;
    }

    .team-track {
        grid-auto-columns: 320px;
    }

    .inner-hero {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 850px) {
    .site-header {
        grid-template-columns: 1fr auto;
        min-height: 72px;
        padding: 8px 22px;
    }

    .brand {
        width: 146px;
    }

    .main-navigation {
        position: fixed;
        inset: 72px 0 0;
        z-index: 99;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 50px 30px;
        color: white;
        background: #080808;
        transform: translateX(100%);
        transition: transform .35s ease;
    }

    .menu-open .main-navigation {
        transform: translateX(0);
    }

    .main-navigation a {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
        font-family: "Montserrat", sans-serif;
        font-size: 28px;
    }

    .main-navigation a::after {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 44px;
        padding: 12px 8px;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .mobile-toggle span:not(.sr-only) {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--ink);
        transition: transform .3s;
    }

    .menu-open .mobile-toggle span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-open .mobile-toggle span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .hero {
        min-height: 660px;
    }

    .hero-copy {
        width: calc(100% - 42px);
        padding-top: 105px;
    }

    .hero-email {
        top: 22px;
        right: 22px;
    }

    .hero h1 {
        width: 100%;
        font-size: clamp(3rem, 12vw, 5.2rem);
    }

    .hero-description {
        width: calc(100% - 100px);
        margin: 0 0 0 auto;
    }

    .hero-accent {
        top: 80px;
        width: 34%;
        height: 30px;
    }

    .hero-robot {
        display: none;
    }

    .outline-arrow {
        bottom: 60px;
        width: 76px;
        height: 76px;
        font-size: 51px;
    }

    .about-visual {
        width: calc(100% - 30px);
        height: 400px;
    }

    .about-visual img {
        padding: 20px;
    }

    .about-copy {
        grid-template-columns: 1fr;
        gap: 45px;
        width: calc(100% - 40px);
        padding-top: 70px;
    }

    .about-copy > div:last-child {
        grid-template-columns: 1fr;
    }

    .about-copy > div:last-child > p:last-child {
        grid-column: auto;
    }

    .orbit-badge {
        margin-left: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        width: calc(100% - 40px);
    }

    .services-section,
    .process-section,
    .team-section,
    .blog-section,
    .blog-index {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .process-grid,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        gap: 55px;
    }

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

    .testimonial-section {
        padding: 70px 20px;
    }

    .testimonial-shell {
        min-height: 460px;
        padding: 45px 28px 120px;
    }

    .testimonial-nav {
        right: 28px;
        bottom: 28px;
    }

    .client-strip {
        grid-template-columns: 1fr 1fr;
    }

    .client-strip span {
        min-height: 120px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        padding-top: 90px;
        padding-bottom: 90px;
    }

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

    .footer-grid > div:last-child {
        grid-column: 2;
    }

    .inner-hero {
        grid-template-columns: 1fr;
        min-height: 720px;
        padding-top: 100px;
    }

    .inner-hero-art {
        position: absolute;
        right: -80px;
        bottom: -50px;
        width: 400px;
        opacity: .6;
    }

    .story-section,
    .generic-content {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    h2 {
        font-size: 2.65rem;
    }

    .hero {
        min-height: 700px;
    }

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

    .hero-description {
        width: 100%;
        margin-top: 30px;
        font-size: 16px;
    }

    .hero-email {
        display: none;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
    }

    .about-highlights div {
        padding: 25px 10px;
    }

    .service-card {
        padding: 42px 30px 34px;
    }

    .process-grid,
    .stats-grid {
        width: calc(100% - 40px);
    }

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

    .team-track {
        grid-auto-columns: calc(100vw - 55px);
    }

    .team-photo {
        height: 420px;
    }

    .post-grid {
        width: calc(100% - 40px);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        width: calc(100% - 40px);
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-marquee {
        font-size: 3.7rem;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
    }

    .search-overlay {
        padding: 24px;
    }

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

    .story-art {
        min-height: 360px;
        padding: 20px;
    }

    .story-art img {
        height: 330px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Mobile navigation and testimonial refinements */

.testimonial-label h2 {
    margin: 16px 0 0;
    color: #fff;
    font-size: 40px;
    line-height: 1.04;
    letter-spacing: -.035em;
}

.testimonial-counter {
    align-self: center;
    margin-right: 12px;
    color: rgba(255, 255, 255, .56);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1120px) {
    .auryx-3d .mobile-toggle {
        position: relative;
        z-index: 3;
        display: flex;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 14px;
        box-shadow: inset 0 1px rgba(255, 255, 255, .06);
        transition: background .25s, border-color .25s, transform .25s;
    }

    .auryx-3d .mobile-toggle:active {
        transform: scale(.96);
    }

    .auryx-3d .mobile-toggle:focus-visible {
        outline: 2px solid var(--neo-lime);
        outline-offset: 3px;
    }

    .auryx-3d .mobile-toggle span:not(.sr-only) {
        display: block;
        width: 21px;
        height: 2px;
        flex: 0 0 2px;
        background: #fff;
        border-radius: 999px;
        transform: none;
        transform-origin: center;
        transition: opacity .22s, transform .3s cubic-bezier(.2, .8, .2, 1), background .25s;
    }

    .auryx-3d.menu-open .mobile-toggle {
        background: var(--neo-lime);
        border-color: var(--neo-lime);
    }

    .auryx-3d.menu-open .mobile-toggle span:not(.sr-only) {
        background: #080908;
    }

    .auryx-3d.menu-open .mobile-toggle span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .auryx-3d.menu-open .mobile-toggle span:nth-child(2) {
        opacity: 0;
        transform: scaleX(.35);
    }

    .auryx-3d.menu-open .mobile-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .auryx-3d .main-navigation {
        height: 100dvh;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

@media (max-width: 850px) {
    .auryx-3d .testimonial-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 48px 16px;
    }

    .testimonial-label {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: start;
        gap: 14px;
    }

    .testimonial-label > span {
        margin: 2px 0 0;
        font-size: 42px;
    }

    .testimonial-label .eyebrow {
        margin-top: 0;
    }

    .testimonial-label h2 {
        margin-top: 8px;
        font-size: clamp(32px, 8.5vw, 40px);
    }

    .auryx-3d .testimonial-shell {
        min-height: 380px;
        padding: 34px 24px 92px;
        border-radius: 20px;
        touch-action: pan-y;
    }

    .auryx-3d .quote-mark {
        top: -28px;
        left: 12px;
        font-size: 160px;
    }

    .auryx-3d .testimonial-shell .service-outcome.active {
        display: flex;
        min-height: 245px;
        flex-direction: column;
    }

    .auryx-3d .testimonial-shell .service-outcome > p {
        margin: 0;
        font-size: clamp(1.4rem, 6.3vw, 1.9rem);
        line-height: 1.34;
        letter-spacing: -.025em;
    }

    .auryx-3d .testimonial-shell .service-outcome footer {
        margin-top: auto;
        padding-top: 28px;
        font-size: 14px;
        line-height: 1.4;
    }

    .auryx-3d .testimonial-shell .service-outcome footer span {
        display: block;
        margin-top: 5px;
    }

    .auryx-3d .testimonial-nav {
        right: 22px;
        bottom: 20px;
        left: 22px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 8px;
    }

    .auryx-3d .testimonial-nav button {
        width: 46px;
        height: 46px;
        border-style: solid;
        border-color: rgba(255, 255, 255, .3);
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .auryx-3d .brand,
    .auryx-3d .site-header.scrolled .brand {
        width: clamp(136px, 40vw, 154px);
    }

    .auryx-3d .mobile-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        padding: 0;
    }

    .auryx-3d .main-navigation {
        justify-content: flex-start;
        padding: 104px 24px 34px;
    }

    .auryx-3d .main-navigation a {
        padding: 14px 0;
        font-size: clamp(22px, 7vw, 27px);
    }
}

@media (max-width: 480px) {
    .auryx-3d .mobile-quick-actions a:first-child {
        display: none;
    }

    .auryx-3d .testimonial-section {
        padding-right: 12px;
        padding-left: 12px;
    }

    .auryx-3d .testimonial-shell {
        min-height: 390px;
        padding: 30px 18px 86px;
    }

    .auryx-3d .testimonial-nav {
        right: 18px;
        left: 18px;
    }
}

/* Minimal service-outcomes layout */

.auryx-3d .testimonial-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 60px max(24px, calc((100vw - 1380px) / 2));
    content-visibility: visible;
    contain-intrinsic-size: none;
}

.auryx-3d .testimonial-label {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.auryx-3d .testimonial-label > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0;
    place-items: center;
    color: var(--neo-lime);
    border: 1px solid rgba(202, 255, 71, .38);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
}

.auryx-3d .testimonial-label .eyebrow {
    margin: 2px 0 0;
}

.auryx-3d .testimonial-label h2 {
    max-width: 760px;
    margin: 8px 0 0;
    font-size: 40px;
    line-height: 1.08;
}

.auryx-3d .testimonial-shell {
    min-height: 320px;
    padding: 46px 52px 92px;
    overflow: hidden;
    border-radius: 22px;
    touch-action: pan-y;
}

.auryx-3d .testimonial-shell .quote-mark {
    display: none;
}

.auryx-3d .testimonial-shell .service-outcome.active {
    display: flex;
    min-height: 180px;
    flex-direction: column;
}

.auryx-3d .testimonial-shell .service-outcome > p {
    max-width: 980px;
    margin: 0;
    font-size: clamp(32px, 2.35vw, 40px);
    line-height: 1.22;
    letter-spacing: -.03em;
}

.auryx-3d .testimonial-shell .service-outcome footer {
    margin-top: auto;
    padding-top: 26px;
    font-size: 15px;
}

.auryx-3d .testimonial-nav {
    right: 34px;
    bottom: 28px;
    left: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 8px;
}

.auryx-3d .testimonial-nav button {
    width: 50px;
    height: 50px;
    border-style: solid;
    border-color: rgba(255, 255, 255, .25);
    font-size: 21px;
}

@media (max-width: 850px) {
    .auryx-3d .testimonial-section {
        gap: 18px;
        padding: 44px 16px;
    }

    .auryx-3d .testimonial-label {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .auryx-3d .testimonial-label > span {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .auryx-3d .testimonial-label .eyebrow {
        font-size: 10px;
    }

    .auryx-3d .testimonial-label h2 {
        max-width: 520px;
        margin-top: 6px;
        font-size: clamp(28px, 7.8vw, 34px);
        line-height: 1.08;
    }

    .auryx-3d .testimonial-shell {
        min-height: 350px;
        padding: 28px 22px 84px;
        border-radius: 18px;
    }

    .auryx-3d .testimonial-shell .service-outcome.active {
        min-height: 238px;
    }

    .auryx-3d .testimonial-shell .service-outcome > p {
        font-size: clamp(22px, 6.2vw, 28px);
        line-height: 1.3;
    }

    .auryx-3d .testimonial-shell .service-outcome footer {
        padding-top: 22px;
        font-size: 13px;
    }

    .auryx-3d .testimonial-shell .service-outcome footer span {
        display: block;
        margin-top: 4px;
    }

    .auryx-3d .testimonial-nav {
        right: 18px;
        bottom: 18px;
        left: 18px;
        grid-template-columns: 1fr auto auto;
    }

    .auryx-3d .testimonial-nav button {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .auryx-3d .testimonial-counter {
        margin-right: 0;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .auryx-3d .testimonial-section {
        padding-right: 12px;
        padding-left: 12px;
    }

    .auryx-3d .testimonial-shell {
        min-height: 370px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .auryx-3d .testimonial-shell .service-outcome.active {
        min-height: 255px;
    }
}

/* Unified services menu trigger */
.auryx-3d .service-menu-trigger-row {
    display: block;
    border: 0;
}

.auryx-3d .service-menu-toggle {
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    color: rgba(255, 255, 255, .65);
    background: transparent;
    border: 0;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
}

.auryx-3d .service-menu-toggle:hover,
.auryx-3d .service-menu-toggle:focus-visible,
.auryx-3d .service-menu-toggle.active,
.auryx-3d .navigation-services.is-open .service-menu-toggle {
    color: white;
    background: rgba(255, 255, 255, .09);
}

.auryx-3d .service-menu-label,
.auryx-3d .service-menu-chevron {
    display: block;
}

.auryx-3d .service-menu-chevron {
    margin-top: -2px;
    color: var(--neo-lime);
    font-size: 15px;
}

.auryx-3d .service-dropdown-overview {
    border-bottom: 1px solid rgba(202, 255, 71, .16);
}

@media (max-width: 1120px) {
    .auryx-3d .service-menu-trigger-row {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }

    .auryx-3d .service-menu-toggle {
        width: 100%;
        min-height: 52px;
        justify-content: flex-start;
        gap: 10px;
        padding: 13px 0;
        color: rgba(255, 255, 255, .58);
        background: transparent;
        border: 0;
        border-radius: 0;
        font-size: 24px;
    }

    .auryx-3d .service-menu-toggle:hover,
    .auryx-3d .service-menu-toggle:focus-visible,
    .auryx-3d .service-menu-toggle.active,
    .auryx-3d .navigation-services.is-open .service-menu-toggle {
        color: var(--neo-lime);
        background: transparent;
    }

    .auryx-3d .service-menu-chevron {
        margin-top: -3px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .auryx-3d .service-menu-toggle {
        font-size: clamp(22px, 7vw, 27px);
    }
}

/* Reliable service links and persistent quick contact */
.auryx-3d .services-section::before,
.auryx-3d .services-section::after {
    pointer-events: none;
}

.auryx-3d .service-card {
    isolation: isolate;
}

.auryx-3d .service-card-cta {
    pointer-events: none;
}

.floating-contact-actions {
    position: fixed;
    z-index: 89;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 9px;
}

.floating-contact-button {
    display: flex;
    min-width: 136px;
    height: 50px;
    align-items: center;
    gap: 10px;
    padding: 0 16px 0 9px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .32);
    font-family: "Kanit", sans-serif;
    font-size: 14px;
    transition: transform .25s ease, box-shadow .25s ease;
    backdrop-filter: blur(12px);
}

.floating-contact-button span {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    background: rgba(255, 255, 255, .22);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
}

.floating-contact-button strong {
    font-weight: 500;
}

.floating-call-button {
    color: #080908;
    background: var(--neo-lime);
    border-color: var(--neo-lime);
}

.floating-whatsapp-button {
    color: white;
    background: #20b858;
    border-color: #35d271;
}

.floating-contact-button:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .42);
    transform: translateY(-2px);
}

.floating-contact-button:focus-visible {
    outline: 2px solid white;
    outline-offset: 3px;
}

.auryx-3d .back-to-top {
    right: 27px;
    bottom: 151px;
}

.auryx-3d.modal-open .floating-contact-actions {
    display: none;
}

@media (max-width: 600px) {
    .floating-contact-actions {
        right: 12px;
        bottom: 14px;
        gap: 7px;
    }

    .floating-contact-button {
        min-width: 112px;
        height: 44px;
        gap: 7px;
        padding: 0 12px 0 7px;
        font-size: 12px;
    }

    .floating-contact-button span {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        font-size: 10px;
    }

    .auryx-3d .back-to-top {
        right: 17px;
        bottom: 119px;
        width: 46px;
        height: 46px;
    }
}

/* Services navigation dropdown */
.navigation-services {
    position: relative;
}

.service-menu-trigger-row {
    display: flex;
    align-items: center;
}

.auryx-3d .navigation-services .navigation-link {
    padding-right: 6px;
}

.service-menu-toggle {
    display: grid;
    width: 28px;
    height: 34px;
    padding: 0;
    place-items: center;
    color: rgba(255, 255, 255, .66);
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.service-menu-toggle:hover,
.service-menu-toggle:focus-visible,
.navigation-services.active .service-menu-toggle {
    color: var(--neo-lime);
    background: rgba(255, 255, 255, .08);
}

.service-menu-chevron {
    display: block;
    font-size: 17px;
    line-height: 1;
    transition: transform .25s ease;
}

.navigation-services.is-open .service-menu-chevron {
    transform: rotate(180deg);
}

.service-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: min(430px, calc(100vw - 36px));
    padding: 14px;
    color: white;
    background:
        radial-gradient(circle at 92% 8%, rgba(120, 65, 255, .24), transparent 34%),
        rgba(8, 9, 12, .98);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    box-shadow: 0 24px 65px rgba(0, 0, 0, .48);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    backdrop-filter: blur(22px);
}

.service-dropdown::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
    content: "";
}

.navigation-services:hover .service-dropdown,
.navigation-services:focus-within .service-dropdown,
.navigation-services.is-open .service-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.service-dropdown > p {
    margin: 0 8px 9px;
    color: var(--neo-lime);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.service-dropdown-links {
    display: grid;
    gap: 3px;
}

.auryx-3d .main-navigation .service-dropdown-links a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 9px 10px;
    color: rgba(255, 255, 255, .72);
    background: transparent;
    border: 0;
    border-radius: 9px;
    font-size: 13px;
}

.auryx-3d .main-navigation .service-dropdown-links a:hover,
.auryx-3d .main-navigation .service-dropdown-links a.active {
    color: white;
    background: rgba(255, 255, 255, .08);
}

.service-dropdown-links a > span {
    color: var(--neo-lime);
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    letter-spacing: .08em;
}

.service-dropdown-links a > strong {
    overflow: hidden;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1120px) {
    .auryx-3d .navigation-services {
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .service-menu-trigger-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }

    .auryx-3d .navigation-services .service-menu-trigger-row > .navigation-link {
        width: 100%;
        padding-right: 0;
        margin: 0;
        border: 0;
    }

    .service-menu-toggle {
        width: 42px;
        height: 42px;
        justify-self: end;
        color: white;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
    }

    .service-dropdown {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0 8px;
        margin: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, .025);
        border: 0;
        border-radius: 12px;
        box-shadow: none;
        opacity: 0;
        transform: none;
        visibility: hidden;
        transition: max-height .32s ease, opacity .22s ease, padding .32s ease, margin .32s ease, visibility .22s;
    }

    .navigation-services:not(.is-open) .service-dropdown {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        opacity: 0;
        pointer-events: none;
        transform: none;
        visibility: hidden;
    }

    .navigation-services.is-open .service-dropdown {
        max-height: 430px;
        padding-top: 9px;
        padding-bottom: 9px;
        margin-top: 7px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .service-dropdown::before,
    .service-dropdown > p {
        display: none;
    }

    .service-dropdown-links {
        gap: 1px;
    }

    .auryx-3d .main-navigation .service-dropdown-links a {
        grid-template-columns: 30px minmax(0, 1fr);
        width: 100%;
        padding: 8px 9px;
        margin: 0;
        border: 0;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .auryx-3d .navigation-services {
        width: 100%;
    }

    .navigation-services.is-open .service-dropdown {
        max-height: 390px;
    }

    .auryx-3d .main-navigation .service-dropdown-links a {
        font-size: 13px;
    }
}

/* Immersive 3D redesign */

.auryx-3d {
    --neo-black: #050507;
    --neo-panel: #0d0e12;
    --neo-lime: #caff47;
    --neo-violet: #7841ff;
    --neo-cyan: #39d4ff;
    color: #f6f7f2;
    background: var(--neo-black);
}

.auryx-3d::selection {
    color: #050507;
    background: var(--neo-lime);
}

.auryx-3d h1,
.auryx-3d h2,
.auryx-3d h3 {
    color: #f6f7f2;
}

.auryx-3d .eyebrow {
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    letter-spacing: .26em;
}

.auryx-3d .site-header {
    position: fixed;
    inset: 18px 22px auto;
    grid-template-columns: 190px 1fr auto;
    width: auto;
    max-width: 1480px;
    min-height: 70px;
    padding: 9px 12px 9px 22px;
    margin: 0 auto;
    color: white;
    background: rgba(10, 10, 14, .58);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .22);
    backdrop-filter: blur(22px) saturate(145%);
}

.auryx-3d .site-header.scrolled {
    min-height: 64px;
    background: rgba(8, 8, 11, .88);
    border-color: rgba(202, 255, 71, .2);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .38);
}

.auryx-3d .brand {
    width: 154px;
}

.auryx-3d .brand img {
    height: 46px;
}

.auryx-3d .main-navigation {
    gap: 6px;
    padding: 5px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 13px;
}

.auryx-3d .main-navigation a {
    padding: 9px 15px;
    color: rgba(255, 255, 255, .65);
    border-radius: 9px;
    font-size: 13px;
    transition: color .25s, background .25s;
}

.auryx-3d .main-navigation a::after {
    display: none;
}

.auryx-3d .main-navigation a:hover,
.auryx-3d .main-navigation a.active {
    color: white;
    background: rgba(255, 255, 255, .09);
}

.auryx-3d .header-actions {
    gap: 8px;
}

.auryx-3d .search-trigger {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: white;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 11px;
}

.auryx-3d .search-trigger span {
    font-size: 21px;
}

.auryx-3d .header-orbit {
    display: flex;
    width: auto;
    height: 42px;
    gap: 20px;
    padding: 0 14px 0 17px;
    color: #080908;
    background: var(--neo-lime);
    border: 0;
    border-radius: 11px;
    font-size: 17px;
    font-weight: 400;
}

.auryx-3d .header-orbit small {
    font-size: 13px;
}

.auryx-3d .header-orbit:hover {
    color: #080908;
    background: white;
    transform: none;
}

.auryx-3d .page-progress span {
    background: linear-gradient(90deg, var(--neo-lime), var(--neo-violet));
}

.auryx-3d .search-overlay {
    background:
        radial-gradient(circle at 70% 30%, rgba(120, 65, 255, .2), transparent 35%),
        rgba(5, 5, 7, .97);
}

.auryx-3d .search-field {
    border-color: rgba(202, 255, 71, .5);
}

.auryx-3d .hero.neo-hero {
    min-height: 960px;
    background:
        radial-gradient(circle at 77% 47%, rgba(120, 65, 255, .17), transparent 30%),
        radial-gradient(circle at 35% 0%, rgba(46, 130, 105, .13), transparent 32%),
        #050507;
    isolation: isolate;
}

.auryx-3d .hero.neo-hero::after {
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.particle-field {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .85;
}

.hero-grid-floor {
    position: absolute;
    z-index: -1;
    right: -15%;
    bottom: -235px;
    left: -15%;
    height: 600px;
    background-image:
        linear-gradient(rgba(202, 255, 71, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(202, 255, 71, .12) 1px, transparent 1px);
    background-size: 75px 75px;
    mask-image: linear-gradient(to top, black, transparent 87%);
    transform: perspective(520px) rotateX(67deg);
    transform-origin: center top;
}

.hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(7px);
    pointer-events: none;
}

.hero-glow-one {
    top: 210px;
    left: -110px;
    width: 270px;
    height: 270px;
    background: radial-gradient(circle at 35% 35%, rgba(202, 255, 71, .38), transparent 69%);
}

.hero-glow-two {
    right: 4%;
    bottom: 60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(120, 65, 255, .26), transparent 70%);
}

.auryx-3d .hero-copy {
    z-index: 3;
    width: min(1400px, calc(100% - 90px));
    padding: 215px 0 190px;
}

.hero-status {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero-status i,
.footer-signal > span {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--neo-lime);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--neo-lime);
}

.hero-status i::after,
.footer-signal > span::after {
    position: absolute;
    inset: -5px;
    content: "";
    border: 1px solid rgba(202, 255, 71, .4);
    border-radius: 50%;
    animation: signalPulse 2s ease-out infinite;
}

@keyframes signalPulse {
    0% { opacity: 1; transform: scale(.7); }
    80%, 100% { opacity: 0; transform: scale(1.7); }
}

.auryx-3d .hero h1 {
    position: relative;
    z-index: 2;
    width: min(930px, 72%);
    margin: 0;
    font-size: clamp(4.4rem, 7.7vw, 8.6rem);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.auryx-3d .hero h1 span,
.auryx-3d .hero h1 strong {
    display: block;
}

.auryx-3d .hero h1 span:first-child {
    margin-left: .85em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .62);
}

.auryx-3d .hero h1 strong {
    position: relative;
    z-index: 3;
    color: #f8f9f2;
    font-weight: 650;
}

.auryx-3d .hero h1 span:last-child {
    margin-left: .35em;
    background: linear-gradient(90deg, var(--neo-lime), #efffc8 48%, var(--neo-lime));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-intro {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 45px;
    width: min(790px, 61%);
    margin: 55px 0 0 14%;
}

.hero-intro > p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 21px;
    align-items: flex-start;
}

.neo-button {
    display: inline-flex;
    min-width: 235px;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 8px 8px 8px 21px;
    color: #070807;
    background: var(--neo-lime);
    border-radius: 13px;
    font-size: 14px;
    font-weight: 400;
    transition: background .25s, transform .25s, box-shadow .25s;
}

.neo-button b {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    background: rgba(0, 0, 0, .12);
    border-radius: 9px;
    font-size: 18px;
}

.neo-button:hover {
    color: #070807;
    background: white;
    box-shadow: 0 15px 40px rgba(202, 255, 71, .16);
    transform: translateY(-3px);
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 5px;
    color: rgba(255, 255, 255, .64);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    font-size: 14px;
    transition: color .25s, border .25s;
}

.text-button:hover {
    color: var(--neo-lime);
    border-color: var(--neo-lime);
}

.hero-world {
    position: absolute;
    z-index: 2;
    top: 195px;
    right: max(0px, calc((100vw - 1420px) / 2));
    width: 600px;
    height: 600px;
    perspective: 900px;
    transform-style: preserve-3d;
    pointer-events: none;
    transition: transform .18s ease-out;
}

.world-sphere {
    position: absolute;
    z-index: 3;
    top: 130px;
    left: 145px;
    width: 310px;
    height: 310px;
    overflow: hidden;
    background:
        radial-gradient(circle at 32% 25%, rgba(255, 255, 255, .95) 0, #dfff8b 5%, #8bff3e 14%, #702be8 37%, #1f0b54 63%, #06020e 82%);
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    box-shadow:
        inset -45px -55px 70px rgba(0, 0, 0, .75),
        inset 15px 15px 30px rgba(255, 255, 255, .14),
        0 0 80px rgba(120, 65, 255, .4),
        0 0 140px rgba(202, 255, 71, .08);
    animation: sphereFloat 6s ease-in-out infinite;
}

.sphere-noise {
    position: absolute;
    inset: -35%;
    background:
        repeating-radial-gradient(ellipse at 35% 45%, transparent 0 12px, rgba(255, 255, 255, .055) 13px 14px),
        conic-gradient(from 80deg, transparent, rgba(255, 255, 255, .1), transparent 25%, rgba(0, 0, 0, .35), transparent);
    border-radius: 42%;
    animation: sphereSpin 15s linear infinite;
}

.sphere-line {
    position: absolute;
    inset: 36% -20%;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.sphere-line.line-two {
    inset: 15% 25%;
    transform: rotate(52deg);
}

.world-shadow {
    position: absolute;
    z-index: 0;
    top: 450px;
    left: 130px;
    width: 350px;
    height: 65px;
    background: rgba(120, 65, 255, .35);
    border-radius: 50%;
    filter: blur(34px);
    transform: rotateX(70deg);
}

.world-orbit {
    position: absolute;
    z-index: 4;
    top: 88px;
    left: 65px;
    width: 470px;
    height: 410px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    transform: rotate(-19deg) rotateX(63deg);
    animation: orbitTurn 12s linear infinite;
}

.world-orbit.orbit-two {
    z-index: 2;
    top: 107px;
    left: 92px;
    width: 420px;
    height: 355px;
    border-color: rgba(202, 255, 71, .5);
    transform: rotate(30deg) rotateX(67deg);
    animation-direction: reverse;
    animation-duration: 9s;
}

.world-orbit.orbit-three {
    z-index: 2;
    top: 22px;
    left: 196px;
    width: 205px;
    height: 535px;
    border-color: rgba(120, 65, 255, .45);
    transform: rotate(38deg) rotateY(60deg);
    animation-duration: 16s;
}

.world-orbit i {
    position: absolute;
    top: 45%;
    left: -7px;
    width: 13px;
    height: 13px;
    background: var(--neo-lime);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--neo-lime);
}

.orbit-two i {
    top: 5%;
    left: 76%;
    width: 8px;
    height: 8px;
    background: white;
}

.world-satellite {
    position: absolute;
    z-index: 5;
    width: 34px;
    height: 34px;
    background: radial-gradient(circle at 30% 25%, white, var(--neo-violet) 40%, #14082e 75%);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(120, 65, 255, .45);
}

.satellite-one {
    top: 90px;
    right: 78px;
    animation: satelliteFloat 5s ease-in-out infinite;
}

.satellite-two {
    bottom: 90px;
    left: 85px;
    width: 22px;
    height: 22px;
    animation: satelliteFloat 5s ease-in-out -2s infinite;
}

@keyframes sphereFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-18px) rotate(3deg); }
}

@keyframes sphereSpin {
    to { transform: rotate(360deg); }
}

@keyframes orbitTurn {
    to { transform: rotate(341deg) rotateX(63deg); }
}

@keyframes satelliteFloat {
    0%, 100% { transform: translate3d(0, 0, 35px); }
    50% { transform: translate3d(12px, -20px, 65px); }
}

.hero-hud {
    position: absolute;
    z-index: 5;
    bottom: 58px;
    width: 230px;
    padding: 18px;
    background: rgba(14, 15, 19, .7);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    backdrop-filter: blur(14px);
}

.hero-hud::before {
    position: absolute;
    top: -1px;
    left: 20px;
    width: 45px;
    height: 2px;
    content: "";
    background: var(--neo-lime);
    box-shadow: 0 0 13px var(--neo-lime);
}

.hero-hud > span,
.hero-hud strong,
.hero-hud small {
    display: block;
}

.hero-hud > span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .35);
    font-size: 10px;
    letter-spacing: .18em;
}

.hero-hud strong {
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
}

.hero-hud small {
    color: rgba(255, 255, 255, .43);
    line-height: 1.4;
}

.hud-left {
    left: max(44px, calc((100vw - 1400px) / 2));
}

.hud-right {
    right: max(44px, calc((100vw - 1400px) / 2));
}

.hud-right::before {
    background: var(--neo-violet);
    box-shadow: 0 0 13px var(--neo-violet);
}

.hero-scroll {
    position: absolute;
    z-index: 5;
    bottom: 66px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    font-style: normal;
}

.kinetic-marquee {
    overflow: hidden;
    color: #070807;
    background: var(--neo-lime);
    border-top: 1px solid #d9ff78;
    border-bottom: 1px solid #a1ca33;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 650;
    letter-spacing: .06em;
    white-space: nowrap;
}

.kinetic-marquee div {
    width: max-content;
    padding: 18px 0;
    animation: marqueeMove 22s linear infinite;
}

.kinetic-marquee span {
    padding: 0 30px;
}

@keyframes marqueeMove {
    to { transform: translateX(-50%); }
}

.auryx-3d .about-section.neo-about {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 80px;
    padding: 150px max(45px, calc((100vw - 1380px) / 2));
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 50%, rgba(120, 65, 255, .12), transparent 35%),
        #08090c;
}

.neo-about::after {
    position: absolute;
    top: 0;
    right: 4%;
    width: 1px;
    height: 100%;
    content: "";
    background: linear-gradient(transparent, rgba(255, 255, 255, .12), transparent);
}

.section-index {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.section-index span {
    color: var(--neo-lime);
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    letter-spacing: -.05em;
}

.section-index small {
    color: rgba(255, 255, 255, .35);
    font-size: 11px;
    letter-spacing: .18em;
}

.about-stage {
    position: relative;
    min-height: 620px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.stage-card {
    position: absolute;
    top: 60px;
    left: 50%;
    width: min(460px, 80%);
    height: 470px;
    overflow: hidden;
    background: #15151b;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    transform-style: preserve-3d;
}

.stage-back {
    background: rgba(120, 65, 255, .45);
    transform: translateX(-42%) translateZ(-120px) rotateY(-12deg) rotateZ(8deg);
    box-shadow: 0 40px 90px rgba(120, 65, 255, .22);
}

.stage-mid {
    background:
        linear-gradient(130deg, rgba(202, 255, 71, .38), transparent 45%),
        #121318;
    transform: translateX(-55%) translateZ(-40px) rotateY(8deg) rotateZ(-6deg);
}

.stage-front {
    padding: 35px;
    background:
        radial-gradient(circle at 50% 45%, rgba(57, 212, 255, .15), transparent 42%),
        #050918;
    transform: translateX(-49%) translateZ(55px) rotateY(-4deg);
    animation: cardFloat 7s ease-in-out infinite;
}

.stage-front img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(57, 212, 255, .4));
}

@keyframes cardFloat {
    0%, 100% { transform: translateX(-49%) translateY(0) translateZ(55px) rotateY(-4deg); }
    50% { transform: translateX(-49%) translateY(-14px) translateZ(70px) rotateY(3deg); }
}

.stage-orbit {
    position: absolute;
    right: 1%;
    bottom: 15px;
    width: 155px;
    height: 155px;
    overflow: hidden;
    background:
        radial-gradient(circle at 46% 42%, rgba(202, 255, 71, .2), transparent 15%),
        radial-gradient(circle at 50% 50%, rgba(105, 59, 255, .25), transparent 58%),
        linear-gradient(145deg, rgba(15, 17, 22, .92), rgba(3, 4, 7, .78));
    border: 1px solid rgba(202, 255, 71, .3);
    border-radius: 50%;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, .5),
        inset 0 0 32px rgba(202, 255, 71, .08),
        0 0 40px rgba(202, 255, 71, .1);
    perspective: 500px;
    transform: rotate(-7deg);
    transform-style: preserve-3d;
}

.stage-orbit::before,
.stage-orbit::after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.stage-orbit::before {
    inset: 9px;
    background: conic-gradient(
        from 80deg,
        transparent 0 18%,
        rgba(202, 255, 71, .7) 21%,
        transparent 24% 61%,
        rgba(113, 68, 255, .75) 65%,
        transparent 70%
    );
    opacity: .65;
    -webkit-mask: radial-gradient(circle, transparent 64%, black 66%);
    mask: radial-gradient(circle, transparent 64%, black 66%);
    animation: stageOrbitSpin 10s linear infinite;
}

.stage-orbit::after {
    inset: 22px;
    background: radial-gradient(circle, transparent 54%, rgba(255, 255, 255, .08) 56%, transparent 59%);
    transform: rotateX(68deg) rotateZ(22deg);
}

.stage-orbit-ring,
.stage-orbit-core,
.stage-orbit-node {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.stage-orbit-ring {
    inset: 27px;
    border: 1px solid rgba(255, 255, 255, .2);
}

.stage-orbit-ring.ring-one {
    border-color: rgba(202, 255, 71, .6);
    transform: rotateX(68deg) rotateZ(35deg);
    animation: stageOrbitRingOne 5.8s linear infinite;
}

.stage-orbit-ring.ring-two {
    inset: 35px 22px;
    border-color: rgba(113, 68, 255, .65);
    transform: rotateY(64deg) rotateZ(-25deg);
    animation: stageOrbitRingTwo 7.4s linear infinite reverse;
}

.stage-orbit-ring.ring-three {
    inset: 42px;
    border-color: rgba(255, 255, 255, .2);
    border-style: dashed;
    animation: stageOrbitSpin 8s linear infinite reverse;
}

.stage-orbit-core {
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background:
        radial-gradient(circle at 38% 32%, #fff 0 7%, var(--neo-lime) 18%, #7da72b 58%, rgba(202, 255, 71, .08) 72%);
    box-shadow:
        0 0 12px rgba(202, 255, 71, .95),
        0 0 32px rgba(202, 255, 71, .45),
        0 0 58px rgba(113, 68, 255, .3);
    transform: translate(-50%, -50%);
    animation: stageOrbitCore 2.6s ease-in-out infinite;
}

.stage-orbit-node {
    width: 7px;
    height: 7px;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, .75);
}

.stage-orbit-node.node-one {
    top: 28px;
    right: 33px;
    background: var(--neo-lime);
    box-shadow: 0 0 12px var(--neo-lime);
}

.stage-orbit-node.node-two {
    right: 23px;
    bottom: 40px;
    background: #7144ff;
    box-shadow: 0 0 12px #7144ff;
}

.stage-orbit-node.node-three {
    bottom: 24px;
    left: 39px;
}

@keyframes stageOrbitSpin {
    to { transform: rotate(360deg); }
}

@keyframes stageOrbitRingOne {
    to { transform: rotateX(68deg) rotateZ(395deg); }
}

@keyframes stageOrbitRingTwo {
    to { transform: rotateY(64deg) rotateZ(335deg); }
}

@keyframes stageOrbitCore {
    50% {
        box-shadow:
            0 0 18px rgba(202, 255, 71, 1),
            0 0 42px rgba(202, 255, 71, .62),
            0 0 70px rgba(113, 68, 255, .4);
        transform: translate(-50%, -50%) scale(1.12);
    }
}

@keyframes spin { to { transform: rotate(360deg); } }

.auryx-3d .neo-about .about-copy {
    display: block;
    width: auto;
    margin: 0;
    padding: 65px 0 0;
    border: 0;
}

.auryx-3d .neo-about .about-copy > div:last-child {
    display: block;
}

.auryx-3d .neo-about .about-copy h2 {
    max-width: 700px;
    color: white;
    font-size: clamp(3.1rem, 5vw, 6.1rem);
    line-height: .97;
}

.auryx-3d .neo-about .about-copy > div:last-child > p:last-child {
    max-width: 520px;
    margin: 50px 0 30px auto;
    color: rgba(255, 255, 255, .5);
}

.auryx-3d .about-highlights {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 30px 0 0;
    background: rgba(255, 255, 255, .1);
}

.auryx-3d .about-highlights div {
    position: relative;
    flex-direction: column;
    gap: 0;
    padding: 30px 34px;
    color: white;
    background: #0b0c10;
}

.auryx-3d .about-highlights div::after {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 6px;
    height: 6px;
    content: "";
    background: var(--neo-lime);
    border-radius: 50%;
}

.auryx-3d .about-highlights strong {
    color: transparent;
    -webkit-text-stroke: 1px white;
    font-size: 4rem;
    line-height: 1;
}

.auryx-3d .about-highlights span {
    color: rgba(255, 255, 255, .42);
}

.auryx-3d .services-section {
    padding: 155px 0 135px;
    color: white;
    background:
        linear-gradient(rgba(5, 5, 7, .9), rgba(5, 5, 7, .92)),
        var(--services-bg) center / cover;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
}

.auryx-3d .services-section::before {
    position: absolute;
    top: 0;
    left: 7%;
    width: 1px;
    height: 100%;
    content: "";
    background: linear-gradient(transparent, rgba(120, 65, 255, .45), transparent);
}

.auryx-3d .services-section::after {
    top: 110px;
    right: -160px;
    bottom: auto;
    left: auto;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(120, 65, 255, .18), transparent 65%);
    border-radius: 50%;
    filter: blur(5px);
}

.auryx-3d .section-heading {
    grid-template-columns: 1.2fr .7fr auto;
    width: min(1380px, calc(100% - 90px));
}

.auryx-3d .section-heading h2 {
    color: white;
    font-size: clamp(3.4rem, 5.5vw, 6.7rem);
    line-height: .92;
}

.auryx-3d .section-heading > p {
    color: rgba(255, 255, 255, .48);
}

.auryx-3d .slider-controls button,
.auryx-3d .testimonial-nav button {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
}

.auryx-3d .slider-controls button:hover,
.auryx-3d .testimonial-nav button:hover {
    color: #050507;
    background: var(--neo-lime);
    border-color: var(--neo-lime);
}

.auryx-3d .service-track {
    grid-auto-columns: min(430px, calc(100vw - 55px));
    gap: 20px;
    padding-right: max(45px, calc((100vw - 1380px) / 2));
    padding-left: max(45px, calc((100vw - 1380px) / 2));
    perspective: 1100px;
}

.auryx-3d .service-card {
    position: relative;
    min-height: 500px;
    padding: 32px 34px;
    overflow: hidden;
    color: white;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .018)),
        #0a0b0f;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    box-shadow: inset 0 1px rgba(255, 255, 255, .08);
    transform-style: preserve-3d;
    transition: border-color .3s, box-shadow .3s, transform .12s ease-out;
}

.auryx-3d .service-card::before {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    content: "";
    background: radial-gradient(circle at 30% 30%, rgba(202, 255, 71, .28), rgba(120, 65, 255, .12) 40%, transparent 68%);
    border-radius: 50%;
    filter: blur(5px);
    transition: transform .5s;
}

.auryx-3d .service-card:hover {
    border-color: rgba(202, 255, 71, .38);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .32);
}

.auryx-3d .service-card:hover::before {
    transform: translate(-25px, -20px) scale(1.12);
}

.service-number {
    color: rgba(255, 255, 255, .28);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    letter-spacing: .16em;
}

.auryx-3d .service-icon {
    width: 88px;
    height: 88px;
    margin: 65px 0 48px;
    color: var(--neo-lime);
    background:
        radial-gradient(circle at 35% 30%, rgba(202, 255, 71, .2), transparent 50%),
        rgba(255, 255, 255, .03);
    border: 1px solid rgba(202, 255, 71, .35);
    box-shadow:
        inset 0 0 25px rgba(202, 255, 71, .08),
        0 0 35px rgba(202, 255, 71, .06);
    font-size: 32px;
    transform: translateZ(35px);
}

.auryx-3d .service-card h3 {
    position: relative;
    z-index: 2;
    min-height: 68px;
    color: white;
    font-size: 27px;
    transform: translateZ(28px);
}

.auryx-3d .service-card p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .45);
}

.auryx-3d .service-card-cta {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 30px;
    left: 34px;
    align-items: center;
    padding: 13px 15px;
    color: #070807;
    background: var(--neo-lime);
    border: 0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    transition: background .25s, transform .25s;
}

.auryx-3d .service-card-cta b {
    font-size: 18px;
    font-weight: 400;
}

.auryx-3d .service-card:hover .service-card-cta {
    background: white;
    transform: translateY(-2px);
}

.auryx-3d .service-card:focus-visible {
    outline: 2px solid var(--neo-lime);
    outline-offset: -3px;
}

.auryx-3d .process-section {
    position: relative;
    padding: 155px 0 145px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(9, 7, 15, .96), rgba(5, 5, 7, .9)),
        var(--process-bg) center / cover;
}

.auryx-3d .process-section::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, .025) 120px),
        linear-gradient(150deg, transparent 55%, rgba(120, 65, 255, .1));
    pointer-events: none;
}

.auryx-3d .process-section > * {
    position: relative;
    z-index: 1;
}

.auryx-3d .process-section .section-heading.centered {
    max-width: 1000px;
}

.auryx-3d .process-grid {
    gap: 20px;
    width: min(1380px, calc(100% - 90px));
    perspective: 1200px;
}

.auryx-3d .process-card {
    min-height: 520px;
    padding: 14px 14px 35px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    transform-style: preserve-3d;
    transition: transform .12s ease-out, border-color .3s;
}

.auryx-3d .process-card:hover {
    border-color: rgba(120, 65, 255, .55);
}

.auryx-3d .process-card img {
    height: 280px;
    margin-bottom: 35px;
    border-radius: 15px;
    filter: grayscale(.7) contrast(1.1);
}

.auryx-3d .process-card > span {
    top: 245px;
    left: 30px;
    color: #080908;
    background: var(--neo-lime);
    box-shadow: 0 10px 30px rgba(202, 255, 71, .18);
}

.auryx-3d .process-card h3,
.auryx-3d .process-card p {
    padding: 0 18px;
}

.auryx-3d .process-card p {
    color: rgba(255, 255, 255, .45);
}

.auryx-3d .stats-grid {
    gap: 1px;
    width: min(1380px, calc(100% - 90px));
    background: rgba(255, 255, 255, .1);
}

.auryx-3d .stat {
    padding: 40px 24px;
    background: #09090d;
    border: 0;
}

.auryx-3d .stat strong {
    color: white;
    -webkit-text-stroke: 0;
    font-size: clamp(3.8rem, 6vw, 6rem);
}

.auryx-3d .stat span {
    color: rgba(255, 255, 255, .38);
}

.auryx-3d .testimonial-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 65px;
    padding: 150px max(45px, calc((100vw - 1380px) / 2));
    background:
        radial-gradient(circle at 10% 10%, rgba(202, 255, 71, .09), transparent 30%),
        #08090b;
}

.testimonial-label > span {
    display: block;
    margin-bottom: 60px;
    color: var(--neo-lime);
    font-family: "Montserrat", sans-serif;
    font-size: 90px;
    line-height: 1;
}

.auryx-3d .testimonial-shell {
    min-height: 480px;
    padding: 70px 75px;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 20%, rgba(120, 65, 255, .18), transparent 30%),
        linear-gradient(145deg, #111218, #08090c);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
}

.quote-mark {
    position: absolute;
    top: -40px;
    left: 45px;
    color: rgba(202, 255, 71, .11);
    font-family: Georgia, serif;
    font-size: 250px;
    line-height: 1;
}

.auryx-3d .testimonial-shell blockquote > p {
    position: relative;
    z-index: 1;
    max-width: 930px;
    color: white;
    font-size: clamp(2.1rem, 3.4vw, 4rem);
}

.auryx-3d .testimonial-shell blockquote footer {
    color: var(--neo-lime);
}

.auryx-3d .team-section {
    padding: 155px 0;
    background: #050507;
}

.auryx-3d .team-track {
    grid-auto-columns: 315px;
    gap: 18px;
    padding-right: max(45px, calc((100vw - 1380px) / 2));
    padding-left: max(45px, calc((100vw - 1380px) / 2));
    perspective: 1000px;
}

.auryx-3d .team-member {
    padding: 12px 12px 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform .12s ease-out, border-color .3s;
}

.auryx-3d .team-member:hover {
    border-color: rgba(202, 255, 71, .35);
}

.auryx-3d .team-photo {
    height: 390px;
    margin-bottom: 24px;
    border-radius: 13px;
}

.auryx-3d .team-photo img {
    filter: grayscale(.45);
}

.auryx-3d .team-member:hover img {
    filter: grayscale(0);
}

.auryx-3d .team-member-label {
    display: block;
    margin: 0 0 9px;
    color: var(--neo-lime);
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-align: left;
    text-transform: uppercase;
}

.auryx-3d .team-member h3 {
    margin-bottom: 7px;
    color: white;
    text-align: left;
}

.auryx-3d .team-member p {
    color: rgba(255, 255, 255, .38);
    text-align: left;
}

.auryx-3d .client-strip {
    min-height: 180px;
    color: rgba(255, 255, 255, .25);
    background:
        linear-gradient(rgba(5, 5, 7, .86), rgba(5, 5, 7, .9)),
        #080808 url("../images/image6.webp") center / cover;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.auryx-3d .client-strip span {
    position: relative;
    border-color: rgba(255, 255, 255, .08);
    font-size: clamp(1rem, 2vw, 1.8rem);
}

.auryx-3d .client-strip span::after {
    position: absolute;
    bottom: 35px;
    left: 50%;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--neo-lime);
    border-radius: 50%;
    opacity: .35;
}

.auryx-3d .blog-section,
.auryx-3d .blog-index {
    padding: 155px 0;
    color: white;
    background:
        radial-gradient(circle at 90% 0%, rgba(120, 65, 255, .12), transparent 28%),
        #08090b;
}

.auryx-3d .post-grid {
    gap: 20px;
    width: min(1380px, calc(100% - 90px));
    perspective: 1000px;
}

.auryx-3d .post-card {
    padding: 12px 12px 28px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    transform-style: preserve-3d;
    transition: transform .12s ease-out, border-color .3s;
}

.auryx-3d .post-card:hover {
    border-color: rgba(202, 255, 71, .35);
}

.auryx-3d .post-image {
    height: 330px;
    border-radius: 13px;
}

.auryx-3d .post-image img {
    filter: saturate(.92) contrast(1.04);
}

.auryx-3d .post-image span {
    color: #070807;
    background: var(--neo-lime);
}

.auryx-3d .post-card h3,
.auryx-3d .post-card > p {
    padding: 0 15px;
}

.auryx-3d .post-card h3 {
    color: white;
}

.auryx-3d .post-card > p {
    color: rgba(255, 255, 255, .35);
}

.auryx-3d .post-card .post-meta {
    color: var(--neo-lime);
    font-size: 10px;
    letter-spacing: .15em;
}

.all-insights {
    display: flex;
    width: fit-content;
    margin: 55px auto 0;
}

.auryx-3d .contact-section {
    width: 100%;
    max-width: none;
    padding: 155px max(45px, calc((100vw - 1380px) / 2));
    background:
        radial-gradient(circle at 80% 70%, rgba(120, 65, 255, .24), transparent 35%),
        linear-gradient(145deg, #0d0e13, #050507);
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-radius: 0;
}

.auryx-3d .contact-copy h2 {
    color: white;
    -webkit-text-stroke: 0;
    font-size: clamp(3.5rem, 6vw, 7rem);
    line-height: .9;
}

.auryx-3d .contact-copy > p:last-child {
    color: rgba(255, 255, 255, .48);
}

.auryx-3d .contact-form {
    padding: 32px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .25);
    backdrop-filter: blur(15px);
}

.auryx-3d .contact-form input,
.auryx-3d .contact-form textarea {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
}

.auryx-3d .contact-form input:focus,
.auryx-3d .contact-form textarea:focus {
    background: rgba(255, 255, 255, .07);
    border-color: var(--neo-lime);
}

.auryx-3d .form-submit {
    color: #070807;
    background: var(--neo-lime);
    border-radius: 12px;
}

.auryx-3d .contact-art {
    right: -60px;
    bottom: -90px;
    opacity: .25;
    filter: hue-rotate(205deg) saturate(1.8);
}

.auryx-3d .site-footer {
    padding-top: 95px;
    background:
        radial-gradient(circle at 15% 100%, rgba(202, 255, 71, .08), transparent 35%),
        #050507;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.auryx-3d .site-footer::after {
    display: none;
}

.footer-signal {
    display: flex;
    align-items: center;
    gap: 13px;
    width: min(1380px, calc(100% - 90px));
    margin: 0 auto 65px;
    color: rgba(255, 255, 255, .42);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-signal p {
    margin: 0;
}

.auryx-3d .footer-marquee {
    color: white;
    -webkit-text-stroke: 0;
    font-size: clamp(4.5rem, 10vw, 11rem);
    font-weight: 600;
}

.auryx-3d .footer-marquee span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(202, 255, 71, .65);
}

.auryx-3d .footer-grid {
    grid-template-columns: 1.45fr .55fr .75fr;
    width: min(1380px, calc(100% - 90px));
}

.footer-kicker {
    margin-bottom: 18px;
    color: var(--neo-lime);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.auryx-3d .footer-cta {
    max-width: 580px;
    color: white;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.footer-project-link {
    display: inline-flex;
    min-width: 260px;
    justify-content: space-between;
    padding: 14px 0;
    color: var(--neo-lime);
    border-bottom: 1px solid rgba(202, 255, 71, .35);
}

.auryx-3d .footer-label {
    color: rgba(255, 255, 255, .3);
}

.auryx-3d .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 25px max(45px, calc((100vw - 1380px) / 2));
    color: rgba(255, 255, 255, .32);
    border-color: rgba(255, 255, 255, .1);
    font-size: 12px;
}

.auryx-3d .back-to-top {
    color: #060706;
    background: var(--neo-lime);
}

/* Inner pages inherit the dimensional system */

.auryx-3d .inner-hero {
    min-height: 760px;
    padding-top: 175px;
    background:
        radial-gradient(circle at 75% 45%, rgba(120, 65, 255, .24), transparent 30%),
        linear-gradient(rgba(5, 5, 7, .9), rgba(5, 5, 7, .95)),
        #050507 url("../images/service-digital-architecture.jpg") center / cover;
}

.auryx-3d .inner-hero::after {
    background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 80px 80px;
}

.auryx-3d .inner-hero h1 {
    color: white;
    font-size: clamp(4rem, 7vw, 8rem);
}

.auryx-3d .story-section,
.auryx-3d .generic-content {
    color: white;
    background: #08090c;
}

.auryx-3d .story-art {
    background: linear-gradient(145deg, #08122f, #0f0a21);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 25px;
}

.auryx-3d .story-copy h2,
.auryx-3d .generic-content h2 {
    color: white;
}

.auryx-3d .story-copy > p:last-of-type,
.auryx-3d .generic-content p,
.auryx-3d .article-header > p:last-child,
.auryx-3d .article-body {
    color: rgba(255, 255, 255, .5);
}

.auryx-3d .article-page {
    color: white;
    background: #08090b;
}

.auryx-3d .article-header h1 {
    color: white;
}

.auryx-3d .blog-search {
    border-color: rgba(202, 255, 71, .45);
}

.auryx-3d .blog-search input,
.auryx-3d .blog-search button {
    color: white;
}

[data-tilt-card] {
    will-change: transform;
}

@media (max-width: 1180px) {
    .auryx-3d .site-header {
        grid-template-columns: 160px 1fr auto;
    }

    .auryx-3d .main-navigation a {
        padding-right: 10px;
        padding-left: 10px;
    }

    .hero-world {
        right: -100px;
        opacity: .78;
        transform: scale(.88);
    }

    .auryx-3d .hero h1 {
        width: 82%;
    }

    .auryx-3d .section-heading {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 850px) {
    .auryx-3d .site-header {
        inset: 12px 14px auto;
        grid-template-columns: 1fr auto;
        padding-right: 12px;
        padding-left: 16px;
        border-radius: 14px;
    }

    .auryx-3d .mobile-toggle {
        display: flex;
    }

    .auryx-3d .mobile-toggle span:not(.sr-only) {
        background: white;
    }

    .auryx-3d .main-navigation {
        inset: 0;
        z-index: -1;
        justify-content: center;
        padding: 115px 28px 45px;
        background:
            radial-gradient(circle at 80% 20%, rgba(120, 65, 255, .25), transparent 35%),
            rgba(5, 5, 7, .98);
        border: 0;
        border-radius: 0;
    }

    .auryx-3d .main-navigation a {
        padding: 17px 0;
        color: rgba(255, 255, 255, .55);
        background: transparent;
        border-radius: 0;
        font-size: 27px;
    }

    .auryx-3d .main-navigation a:hover,
    .auryx-3d .main-navigation a.active {
        color: var(--neo-lime);
        background: transparent;
    }

    .auryx-3d .header-actions {
        display: none;
    }

    .auryx-3d .hero.neo-hero {
        min-height: 900px;
    }

    .auryx-3d .hero-copy {
        width: calc(100% - 40px);
        padding: 175px 0 250px;
    }

    .auryx-3d .hero h1 {
        width: 100%;
        font-size: clamp(3.6rem, 12vw, 6.2rem);
    }

    .auryx-3d .hero h1 span:first-child {
        margin-left: .15em;
    }

    .auryx-3d .hero h1 span:last-child {
        margin-left: .1em;
    }

    .hero-intro {
        grid-template-columns: 1fr;
        width: 60%;
        margin: 40px 0 0;
    }

    .hero-world {
        top: auto;
        right: -170px;
        bottom: 10px;
        opacity: .62;
        transform: scale(.68);
        transform-origin: center;
    }

    .hud-right {
        display: none;
    }

    .hud-left {
        bottom: 25px;
        left: 20px;
    }

    .hero-scroll {
        display: none;
    }

    .auryx-3d .about-section.neo-about {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 100px 24px;
    }

    .about-stage {
        min-height: 560px;
    }

    .auryx-3d .neo-about .about-copy {
        padding-top: 0;
    }

    .auryx-3d .about-highlights {
        grid-template-columns: 1fr;
    }

    .auryx-3d .services-section,
    .auryx-3d .process-section,
    .auryx-3d .team-section,
    .auryx-3d .blog-section,
    .auryx-3d .blog-index {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .auryx-3d .section-heading {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
    }

    .auryx-3d .service-track,
    .auryx-3d .team-track {
        padding-right: 20px;
        padding-left: 20px;
    }

    .auryx-3d .process-grid,
    .auryx-3d .stats-grid,
    .auryx-3d .post-grid {
        width: calc(100% - 40px);
    }

    .auryx-3d .testimonial-section {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 100px 20px;
    }

    .testimonial-label {
        display: flex;
        align-items: center;
        gap: 22px;
    }

    .testimonial-label > span {
        margin: 0;
        font-size: 55px;
    }

    .auryx-3d .testimonial-shell {
        padding: 55px 35px 120px;
    }

    .auryx-3d .contact-section {
        padding: 110px 24px;
    }

    .auryx-3d .footer-grid {
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 48px);
    }

    .footer-signal {
        width: calc(100% - 48px);
    }

    .auryx-3d .inner-hero {
        padding-top: 165px;
    }
}

@media (max-width: 560px) {
    .auryx-3d .hero.neo-hero {
        min-height: 820px;
    }

    .auryx-3d .hero-copy {
        padding-top: 145px;
    }

    .auryx-3d .hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
        line-height: .88;
    }

    .hero-status {
        max-width: 260px;
        line-height: 1.5;
    }

    .hero-intro {
        width: 82%;
    }

    .hero-world {
        right: -225px;
        bottom: -30px;
        transform: scale(.5);
    }

    .hero-hud {
        display: none;
    }

    .about-stage {
        min-height: 440px;
    }

    .stage-card {
        top: 40px;
        width: 82%;
        height: 340px;
    }

    .stage-orbit {
        right: -6px;
        width: 115px;
        height: 115px;
    }

    .auryx-3d .neo-about .about-copy h2 {
        font-size: 2.8rem;
    }

    .auryx-3d .service-card {
        min-height: 480px;
    }

    .auryx-3d .process-card {
        min-height: 500px;
    }

    .auryx-3d .testimonial-shell {
        min-height: 550px;
        padding: 45px 25px 120px;
    }

    .auryx-3d .testimonial-shell blockquote > p {
        font-size: 1.85rem;
    }

    .auryx-3d .post-image {
        height: 260px;
    }

    .auryx-3d .contact-form {
        padding: 18px;
    }

    .auryx-3d .footer-grid {
        grid-template-columns: 1fr;
    }

    .auryx-3d .footer-grid > div:last-child {
        grid-column: auto;
    }

    .auryx-3d .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-right: 24px;
        padding-left: 24px;
    }
}

/* Service-content and all-device optimization */

.auryx-3d h1,
.auryx-3d h2 {
    max-width: 100%;
    font-size: 40px !important;
    line-height: 1.08;
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
}

.auryx-3d .hero h1 {
    width: min(760px, 100%);
    line-height: .98;
}

.auryx-3d .hero h1 span:first-child,
.auryx-3d .hero h1 span:last-child {
    margin-left: 0;
}

.auryx-3d .hero h1 strong {
    color: white;
}

.auryx-3d .hero.neo-hero {
    min-height: 780px;
}

.auryx-3d .hero-copy {
    padding-top: 165px;
    padding-bottom: 190px;
}

.auryx-3d .about-section.neo-about,
.auryx-3d .services-section,
.auryx-3d .process-section,
.auryx-3d .testimonial-section,
.auryx-3d .team-section,
.auryx-3d .blog-section,
.auryx-3d .contact-section,
.auryx-3d .story-section,
.auryx-3d .generic-content,
.auryx-3d .blog-index {
    content-visibility: auto;
    contain-intrinsic-size: auto 850px;
}

.auryx-3d .stage-front img,
.auryx-3d .inner-hero-art,
.auryx-3d .story-art img,
.auryx-3d .service-visual img,
.auryx-3d .process-card img,
.auryx-3d .team-photo img,
.auryx-3d .post-image img,
.auryx-3d .article-image {
    background: #0c0d11;
}

.auryx-3d .service-track {
    grid-auto-columns: min(370px, calc(100vw - 48px));
}

.auryx-3d .service-card {
    min-height: 625px;
    padding: 28px 28px 32px;
}

.auryx-3d .service-visual {
    position: relative;
    height: 190px;
    margin: 28px 0 35px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 15px;
    transform: translateZ(25px);
}

.auryx-3d .service-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 7, .65));
    border-radius: inherit;
    pointer-events: none;
}

.auryx-3d .service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.auryx-3d .service-visual .service-icon {
    position: absolute;
    z-index: 2;
    bottom: -24px;
    left: 18px;
    width: 62px;
    height: 62px;
    margin: 0;
    background: rgba(8, 9, 12, .92);
    font-size: 24px;
    backdrop-filter: blur(12px);
}

.auryx-3d .service-card h3 {
    min-height: 0;
    margin-bottom: 14px;
    font-size: 23px;
}

.auryx-3d .service-card p {
    min-height: 0;
    margin-bottom: 72px;
}

.auryx-3d .process-card img {
    filter: saturate(.92) contrast(1.04);
}

.auryx-3d .stat strong {
    font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.testimonial-shell .service-outcome {
    display: none;
}

.testimonial-shell .service-outcome.active {
    display: block;
    animation: quoteIn .45s ease both;
}

.auryx-3d .testimonial-shell .service-outcome > p {
    position: relative;
    z-index: 1;
    max-width: 930px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.75rem, 3vw, 3.25rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -.04em;
}

.auryx-3d .testimonial-shell .service-outcome footer {
    color: var(--neo-lime);
    font-size: 17px;
    font-style: normal;
}

.auryx-3d .testimonial-shell .service-outcome footer span {
    color: rgba(255, 255, 255, .5);
}

.auryx-3d .team-track {
    grid-auto-columns: minmax(300px, 360px);
}

.auryx-3d .team-photo {
    height: 230px;
}

.auryx-3d .team-photo img {
    filter: saturate(.92) contrast(1.04);
}

.auryx-3d .client-strip {
    grid-template-columns: repeat(7, minmax(170px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    background:
        linear-gradient(rgba(5, 5, 7, .88), rgba(5, 5, 7, .94)),
        #080808 url("../images/service-digital-architecture.jpg") center / cover;
    scrollbar-width: none;
}

.auryx-3d .client-strip::-webkit-scrollbar {
    display: none;
}

.auryx-3d .client-strip span {
    min-height: 180px;
    padding: 20px;
    font-size: 16px;
    text-align: center;
}

.auryx-3d .contact-form select {
    width: 100%;
    margin-bottom: 20px;
    padding: 19px 28px;
    color: white;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    outline: 0;
    transition: border .2s, background .2s;
}

.auryx-3d .contact-form select:focus {
    background: rgba(255, 255, 255, .07);
    border-color: var(--neo-lime);
}

.auryx-3d .contact-art {
    width: 520px;
    border-radius: 22px;
    filter: saturate(.9);
}

.auryx-3d .inner-hero {
    min-height: 650px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
}

.auryx-3d .inner-hero-art {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .38);
}

.auryx-3d .story-art {
    min-height: 0;
    padding: 14px;
}

.auryx-3d .story-art img {
    height: 430px;
    object-fit: cover;
    border-radius: 16px;
}

.auryx-3d .article-header,
.auryx-3d .article-body {
    overflow-wrap: anywhere;
}

.auryx-3d button,
.auryx-3d a,
.auryx-3d input,
.auryx-3d select,
.auryx-3d textarea {
    touch-action: manipulation;
}

@media (max-width: 1180px) {
    .auryx-3d .hero-world {
        right: -130px;
        transform: scale(.82);
    }

    .auryx-3d .inner-hero {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 45px;
    }
}

@media (max-width: 850px) {
    .auryx-3d .hero.neo-hero {
        min-height: 760px;
    }

    .auryx-3d .hero-copy {
        padding: 150px 0 210px;
    }

    .auryx-3d .hero-intro {
        width: min(620px, 78%);
    }

    .auryx-3d .hero-world {
        right: -210px;
        bottom: -70px;
        transform: scale(.56);
    }

    .auryx-3d .about-section.neo-about,
    .auryx-3d .services-section,
    .auryx-3d .process-section,
    .auryx-3d .testimonial-section,
    .auryx-3d .team-section,
    .auryx-3d .blog-section,
    .auryx-3d .contact-section,
    .auryx-3d .blog-index {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .auryx-3d .service-card {
        min-height: 610px;
    }

    .auryx-3d .process-card {
        min-height: 0;
    }

    .auryx-3d .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .auryx-3d .testimonial-shell {
        min-height: 480px;
    }

    .auryx-3d .inner-hero {
        min-height: 690px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 40px;
        padding-top: 145px;
        padding-bottom: 75px;
    }

    .auryx-3d .inner-hero-art {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 260px;
        opacity: 1;
    }

    .auryx-3d .story-section,
    .auryx-3d .generic-content {
        gap: 40px;
        padding-top: 75px;
        padding-bottom: 75px;
    }
}

@media (max-width: 600px) {
    .auryx-3d {
        font-size: 16px;
    }

    .auryx-3d h1,
    .auryx-3d h2 {
        font-size: 40px !important;
    }

    .auryx-3d .site-header {
        inset: 8px 10px auto;
    }

    .auryx-3d .brand {
        width: 138px;
    }

    .auryx-3d .hero.neo-hero {
        min-height: 740px;
    }

    .auryx-3d .hero-copy {
        width: calc(100% - 32px);
        padding-top: 125px;
    }

    .auryx-3d .hero-intro {
        width: 100%;
        margin-top: 28px;
    }

    .auryx-3d .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .auryx-3d .neo-button,
    .auryx-3d .text-button {
        width: 100%;
    }

    .auryx-3d .about-section.neo-about {
        padding-right: 18px;
        padding-left: 18px;
    }

    .auryx-3d .about-stage {
        min-height: 390px;
    }

    .auryx-3d .stage-card {
        width: 86%;
        height: 300px;
    }

    .auryx-3d .service-track,
    .auryx-3d .team-track {
        padding-right: 16px;
        padding-left: 16px;
    }

    .auryx-3d .service-track {
        grid-auto-columns: calc(100vw - 32px);
    }

    .auryx-3d .service-card {
        min-height: 600px;
        padding: 22px;
    }

    .auryx-3d .service-card-cta {
        right: 22px;
        left: 22px;
    }

    .auryx-3d .section-heading,
    .auryx-3d .process-grid,
    .auryx-3d .stats-grid,
    .auryx-3d .post-grid {
        width: calc(100% - 32px);
    }

    .auryx-3d .stats-grid {
        grid-template-columns: 1fr;
    }

    .auryx-3d .testimonial-section {
        padding-right: 16px;
        padding-left: 16px;
    }

    .auryx-3d .testimonial-shell {
        min-height: 560px;
        padding: 38px 22px 110px;
    }

    .auryx-3d .testimonial-shell .service-outcome > p {
        font-size: 26px;
    }

    .auryx-3d .team-track {
        grid-auto-columns: calc(100vw - 32px);
    }

    .auryx-3d .client-strip {
        display: grid;
        grid-template-columns: none;
        grid-auto-columns: minmax(190px, 72vw);
        grid-auto-flow: column;
    }

    .auryx-3d .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .auryx-3d .contact-section {
        padding-right: 16px;
        padding-left: 16px;
    }

    .auryx-3d .contact-form {
        padding: 16px;
    }

    .auryx-3d .contact-art {
        display: none;
    }

    .auryx-3d .inner-hero {
        min-height: 650px;
        padding: 120px 16px 55px;
    }

    .auryx-3d .inner-hero-art {
        height: 220px;
        border-radius: 16px;
    }

    .auryx-3d .story-section,
    .auryx-3d .generic-content {
        padding: 65px 16px;
    }

    .auryx-3d .story-art img {
        height: 270px;
    }

    .auryx-3d .blog-search {
        width: calc(100% - 32px);
    }

    .auryx-3d .blog-search input {
        min-width: 0;
        font-size: 16px;
    }

    .auryx-3d .article-header {
        padding: 120px 16px 40px;
    }

    .auryx-3d .article-image,
    .auryx-3d .article-body {
        width: calc(100% - 32px);
    }

    .auryx-3d .footer-grid {
        grid-template-columns: 1fr;
        width: calc(100% - 32px);
    }

    .auryx-3d .footer-grid > div:last-child {
        grid-column: auto;
    }

    .auryx-3d .footer-marquee {
        font-size: 54px;
    }
}

/* Compact spacing, contact-led header, and continuously moving tracks */

.auryx-3d .site-header {
    grid-template-columns: 225px minmax(360px, 1fr) auto;
    min-height: 82px;
    padding: 9px 12px 9px 22px;
}

.auryx-3d .site-header.scrolled {
    min-height: 74px;
}

.auryx-3d .brand {
    width: 205px;
}

.auryx-3d .brand img {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.auryx-3d .site-header.scrolled .brand img {
    height: 54px;
}

.auryx-3d .header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.auryx-3d .header-contact {
    display: flex;
    min-width: 150px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    padding: 0 13px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 11px;
    transition: background .25s, border-color .25s;
}

.auryx-3d .header-contact:first-child {
    min-width: 188px;
}

.auryx-3d .header-contact:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(202, 255, 71, .35);
}

.auryx-3d .header-contact small {
    color: var(--neo-lime);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.auryx-3d .header-contact strong {
    color: white;
    font-family: "Kanit", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    white-space: nowrap;
}

.auryx-3d .header-orbit {
    height: 50px;
}

.mobile-quick-actions,
.mobile-nav-contact {
    display: none;
}

.auryx-3d .hero.neo-hero {
    min-height: 690px;
}

.auryx-3d .hero-copy {
    padding-top: 135px;
    padding-bottom: 120px;
}

.auryx-3d .about-section.neo-about {
    gap: 50px;
    padding-top: 60px;
    padding-bottom: 44px;
}

.auryx-3d .about-stage {
    min-height: 455px;
}

.auryx-3d .stage-card {
    top: 36px;
    width: min(430px, 82%);
    height: 350px;
}

.auryx-3d .stage-front {
    padding: 0;
}

.auryx-3d .stage-front img {
    object-fit: cover;
    filter: saturate(.92) contrast(1.04);
}

.auryx-3d .stage-orbit {
    bottom: 0;
    width: 125px;
    height: 125px;
}

.auryx-3d .neo-about .about-copy {
    padding-top: 28px;
}

.auryx-3d .neo-about .about-copy > div:last-child > p:last-child {
    margin-top: 24px;
    margin-bottom: 22px;
}

.auryx-3d .about-highlights {
    margin-top: 6px;
}

.auryx-3d .about-highlights div {
    padding: 22px 28px;
}

.auryx-3d .about-highlights strong {
    font-size: 3rem;
}

.auryx-3d .services-section {
    padding-top: 52px;
    padding-bottom: 50px;
}

.auryx-3d .section-heading {
    gap: 32px;
    margin-bottom: 32px;
}

.auryx-3d .service-track,
.auryx-3d .team-track {
    scroll-behavior: auto;
    scroll-snap-type: none;
    cursor: grab;
    outline: 0;
    overscroll-behavior-inline: contain;
}

.auryx-3d .service-track:active,
.auryx-3d .team-track:active,
.auryx-3d .service-track.is-dragging,
.auryx-3d .team-track.is-dragging {
    cursor: grabbing;
}

.auryx-3d .service-track.is-dragging,
.auryx-3d .team-track.is-dragging {
    user-select: none;
}

.auryx-3d .service-track:focus-visible,
.auryx-3d .team-track:focus-visible {
    outline: 2px solid var(--neo-lime);
    outline-offset: -2px;
}

.auryx-3d .process-section {
    padding-top: 50px;
    padding-bottom: 60px;
}

.auryx-3d .process-grid {
    margin-bottom: 52px;
}

.auryx-3d .process-card {
    min-height: 455px;
}

.auryx-3d .process-card img {
    height: 235px;
    margin-bottom: 28px;
}

.auryx-3d .process-card > span {
    top: 200px;
}

.auryx-3d .stat {
    padding: 28px 20px;
}

.auryx-3d .testimonial-section {
    grid-template-columns: 190px 1fr;
    gap: 38px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.testimonial-label > span {
    margin-bottom: 28px;
    font-size: 64px;
}

.auryx-3d .testimonial-shell {
    min-height: 390px;
    padding: 52px 58px;
}

.auryx-3d .team-section,
.auryx-3d .blog-section,
.auryx-3d .blog-index {
    padding-top: 60px;
    padding-bottom: 60px;
}

.auryx-3d .post-image {
    height: 280px;
}

.all-insights {
    margin-top: 36px;
}

.auryx-3d .contact-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.auryx-3d .site-footer {
    padding-top: 58px;
}

.footer-signal {
    margin-bottom: 32px;
}

.auryx-3d .footer-grid {
    margin-top: 32px;
    margin-bottom: 52px;
}

.footer-phone-label {
    margin-top: 24px;
    margin-bottom: 8px;
}

.footer-social-label {
    margin-top: 26px;
    margin-bottom: 11px;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px 7px 7px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    font-size: 12px;
    transition: color .25s, background .25s, border-color .25s;
}

.footer-social-links a > span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    color: #070807;
    background: var(--neo-lime);
    border-radius: 7px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-social-links a:hover {
    color: white;
    background: rgba(255, 255, 255, .09);
    border-color: rgba(202, 255, 71, .34);
}

.auryx-3d .inner-hero {
    min-height: 560px;
    padding-top: 130px;
    padding-bottom: 60px;
}

.auryx-3d .story-section,
.auryx-3d .generic-content {
    padding-top: 58px;
    padding-bottom: 58px;
}

.auryx-3d .article-page {
    padding-bottom: 72px;
}

.auryx-3d .article-header {
    padding-top: 72px;
    padding-bottom: 42px;
}

@media (max-width: 1120px) {
    .auryx-3d .site-header {
        grid-template-columns: 1fr auto auto;
        min-height: 76px;
        padding-right: 12px;
        padding-left: 18px;
    }

    .auryx-3d .brand,
    .auryx-3d .site-header.scrolled .brand {
        width: 185px;
    }

    .auryx-3d .brand img,
    .auryx-3d .site-header.scrolled .brand img {
        height: 56px;
    }

    .auryx-3d .header-actions {
        display: none;
    }

    .auryx-3d .mobile-quick-actions {
        display: flex;
        gap: 6px;
    }

    .auryx-3d .mobile-quick-actions a {
        display: grid;
        min-width: 48px;
        height: 42px;
        padding: 0 10px;
        place-items: center;
        color: #080908;
        background: var(--neo-lime);
        border-radius: 10px;
        font-size: 12px;
        font-weight: 500;
    }

    .auryx-3d .mobile-toggle {
        display: flex;
    }

    .auryx-3d .mobile-toggle span:not(.sr-only) {
        background: white;
    }

    .auryx-3d .main-navigation {
        position: fixed;
        inset: 0;
        z-index: -1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 105px 28px 35px;
        color: white;
        background:
            radial-gradient(circle at 80% 20%, rgba(120, 65, 255, .25), transparent 35%),
            rgba(5, 5, 7, .98);
        border: 0;
        border-radius: 0;
        transform: translateX(100%);
        transition: transform .35s ease;
    }

    .auryx-3d.menu-open .main-navigation,
    .menu-open .auryx-3d .main-navigation {
        transform: translateX(0);
    }

    .auryx-3d .main-navigation a {
        width: min(620px, 100%);
        padding: 13px 0;
        margin: 0 auto;
        color: rgba(255, 255, 255, .58);
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
        border-radius: 0;
        font-size: 24px;
    }

    .auryx-3d .mobile-nav-contact {
        display: grid;
        width: min(620px, 100%);
        gap: 8px;
        margin: 24px auto 0;
    }

    .auryx-3d .mobile-nav-contact a {
        padding: 0;
        color: var(--neo-lime);
        border: 0;
        font-size: 16px;
    }
}

@media (max-width: 850px) {
    .auryx-3d .hero.neo-hero {
        min-height: 680px;
    }

    .auryx-3d .hero-copy {
        padding-top: 130px;
        padding-bottom: 165px;
    }

    .auryx-3d .about-section.neo-about,
    .auryx-3d .services-section,
    .auryx-3d .process-section,
    .auryx-3d .testimonial-section,
    .auryx-3d .team-section,
    .auryx-3d .blog-section,
    .auryx-3d .contact-section,
    .auryx-3d .blog-index {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .auryx-3d .about-stage {
        min-height: 400px;
    }

    .auryx-3d .section-heading {
        margin-bottom: 26px;
    }

    .auryx-3d .testimonial-shell {
        min-height: 440px;
        padding: 42px 34px 100px;
    }

    .auryx-3d .inner-hero {
        min-height: 620px;
        padding-top: 125px;
        padding-bottom: 48px;
    }

    .auryx-3d .story-section,
    .auryx-3d .generic-content {
        padding-top: 52px;
        padding-bottom: 52px;
    }
}

@media (max-width: 600px) {
    .auryx-3d .site-header {
        inset: 8px 9px auto;
        grid-template-columns: 1fr auto auto;
        min-height: 68px;
        padding-left: 12px;
    }

    .auryx-3d .brand,
    .auryx-3d .site-header.scrolled .brand {
        width: 158px;
    }

    .auryx-3d .brand img,
    .auryx-3d .site-header.scrolled .brand img {
        height: 50px;
    }

    .auryx-3d .mobile-quick-actions {
        gap: 4px;
    }

    .auryx-3d .mobile-quick-actions a {
        min-width: 42px;
        height: 38px;
        padding: 0 7px;
        font-size: 10px;
    }

    .auryx-3d .mobile-toggle {
        width: 40px;
        padding-right: 6px;
        padding-left: 6px;
    }

    .auryx-3d .hero.neo-hero {
        min-height: 650px;
    }

    .auryx-3d .hero-copy {
        padding-top: 112px;
        padding-bottom: 140px;
    }

    .auryx-3d .about-section.neo-about,
    .auryx-3d .services-section,
    .auryx-3d .process-section,
    .auryx-3d .testimonial-section,
    .auryx-3d .team-section,
    .auryx-3d .blog-section,
    .auryx-3d .contact-section,
    .auryx-3d .blog-index {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .auryx-3d .about-stage {
        min-height: 350px;
    }

    .auryx-3d .stage-card {
        height: 280px;
    }

    .auryx-3d .about-highlights div {
        padding: 18px 22px;
    }

    .auryx-3d .process-grid {
        margin-bottom: 34px;
    }

    .auryx-3d .process-card {
        min-height: 0;
    }

    .auryx-3d .testimonial-shell {
        min-height: 500px;
    }

    .auryx-3d .footer-grid {
        margin-top: 26px;
        margin-bottom: 38px;
    }

    .auryx-3d .inner-hero {
        min-height: 590px;
        padding-top: 112px;
        padding-bottom: 42px;
    }

    .auryx-3d .story-section,
    .auryx-3d .generic-content {
        padding-top: 44px;
        padding-bottom: 44px;
    }
}

/* Dedicated service pages */

.auryx-3d.service-detail-page {
    background: #06070a;
}

.service-detail-overview,
.service-capability-section,
.service-delivery-section,
.service-detail-cta {
    padding-right: max(45px, calc((100vw - 1380px) / 2));
    padding-left: max(45px, calc((100vw - 1380px) / 2));
}

.service-detail-overview {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 54px 70px;
    padding-top: 62px;
    padding-bottom: 58px;
    color: white;
    background:
        radial-gradient(circle at 12% 20%, rgba(202, 255, 71, .08), transparent 29%),
        #08090d;
}

.service-detail-copy {
    align-self: center;
}

.service-detail-copy h2,
.service-detail-heading h2,
.service-detail-cta h2 {
    color: white;
}

.service-detail-copy > p:last-of-type,
.service-detail-heading > p:last-child,
.service-detail-cta > div > p:last-child {
    max-width: 660px;
    color: rgba(255, 255, 255, .58);
}

.service-detail-copy .neo-button {
    margin-top: 26px;
}

.service-detail-media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: #11131a;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
}

.service-detail-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 55%, rgba(5, 6, 9, .86));
    pointer-events: none;
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.service-detail-media > span {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 20px;
    color: var(--neo-lime);
    font-size: 11px;
    letter-spacing: .16em;
}

.service-outcome-grid {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
}

.service-outcome-grid article {
    min-height: 130px;
    padding: 26px 28px;
    background: #0c0e13;
}

.service-outcome-grid span {
    color: var(--neo-lime);
    font-size: 22px;
}

.service-outcome-grid p {
    max-width: 330px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
}

.service-capability-section {
    padding-top: 62px;
    padding-bottom: 62px;
    color: white;
    background:
        radial-gradient(circle at 88% 15%, rgba(120, 65, 255, .15), transparent 31%),
        #050609;
}

.service-detail-heading {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(280px, .6fr);
    gap: 24px 70px;
    align-items: end;
    margin-bottom: 34px;
}

.service-detail-heading .eyebrow {
    grid-column: 1 / -1;
}

.service-detail-heading h2,
.service-detail-heading > p {
    margin-bottom: 0;
}

.service-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-capability-grid article {
    position: relative;
    min-height: 280px;
    padding: 28px 26px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    transform-style: preserve-3d;
    transition: border-color .25s, transform .12s ease-out;
}

.service-capability-grid article::after {
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    content: "";
    background: radial-gradient(circle, rgba(202, 255, 71, .16), transparent 68%);
    border-radius: 50%;
}

.service-capability-grid article:hover {
    border-color: rgba(202, 255, 71, .4);
}

.service-capability-grid article > span {
    display: block;
    margin-bottom: 60px;
    color: var(--neo-lime);
    font-size: 11px;
    letter-spacing: .16em;
}

.service-capability-grid h3 {
    margin-bottom: 16px;
    color: white;
    font-size: 21px;
}

.service-capability-grid p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .52);
    font-size: 15px;
}

.service-delivery-section {
    padding-top: 62px;
    padding-bottom: 62px;
    color: white;
    background: #0a0c11;
}

.service-delivery-grid {
    display: grid;
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
}

.service-delivery-grid article {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
    align-items: center;
    min-height: 150px;
    padding: 24px 34px;
    background: #0d0f15;
}

.service-delivery-grid strong {
    color: transparent;
    -webkit-text-stroke: 1px rgba(202, 255, 71, .62);
    font-family: "Montserrat", sans-serif;
    font-size: 46px;
    font-weight: 500;
}

.service-delivery-grid h3 {
    margin-bottom: 9px;
    color: white;
    font-size: 22px;
}

.service-delivery-grid p {
    max-width: 820px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .54);
}

.service-detail-cta {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    padding-top: 58px;
    padding-bottom: 58px;
    color: white;
    background:
        radial-gradient(circle at 75% 45%, rgba(202, 255, 71, .1), transparent 30%),
        linear-gradient(135deg, #100c20, #07080b 58%);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.service-detail-cta > div {
    max-width: 790px;
}

.service-detail-cta .neo-button {
    flex: 0 0 auto;
}

@media (max-width: 1050px) {
    .service-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 850px) {
    .service-detail-overview,
    .service-capability-section,
    .service-delivery-section,
    .service-detail-cta {
        padding-right: 20px;
        padding-left: 20px;
    }

    .service-detail-overview {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .service-detail-media {
        min-height: 360px;
    }

    .service-detail-media img {
        min-height: 360px;
    }

    .service-outcome-grid {
        grid-template-columns: 1fr;
    }

    .service-outcome-grid article {
        min-height: 0;
    }

    .service-capability-section,
    .service-delivery-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .service-detail-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-detail-heading .eyebrow {
        grid-column: auto;
    }

    .service-detail-cta {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

@media (max-width: 600px) {
    .service-detail-overview,
    .service-capability-section,
    .service-delivery-section,
    .service-detail-cta {
        padding-right: 16px;
        padding-left: 16px;
    }

    .service-detail-overview,
    .service-capability-section,
    .service-delivery-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .service-detail-media,
    .service-detail-media img {
        min-height: 290px;
    }

    .service-capability-grid {
        grid-template-columns: 1fr;
    }

    .service-capability-grid article {
        min-height: 230px;
    }

    .service-capability-grid article > span {
        margin-bottom: 38px;
    }

    .service-delivery-grid article {
        grid-template-columns: 58px 1fr;
        gap: 16px;
        min-height: 0;
        padding: 24px 18px;
    }

    .service-delivery-grid strong {
        font-size: 32px;
    }

    .service-detail-cta {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .service-detail-cta .neo-button {
        width: 100%;
    }
}

/* Service enquiry modal */

.service-detail-page button.neo-button {
    border: 0;
    cursor: pointer;
}

.service-enquiry-modal {
    width: min(980px, calc(100% - 32px));
    max-width: none;
    max-height: min(90vh, 820px);
    padding: 0;
    overflow: auto;
    color: white;
    background:
        radial-gradient(circle at 88% 10%, rgba(120, 65, 255, .2), transparent 30%),
        #08090d;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 24px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .7);
}

.service-enquiry-modal[open] {
    animation: serviceModalIn .28s ease both;
}

.service-enquiry-modal::backdrop {
    background: rgba(2, 3, 5, .78);
    backdrop-filter: blur(9px);
}

@keyframes serviceModalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-enquiry-close {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: white;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.service-enquiry-close:hover {
    color: #070807;
    background: var(--neo-lime);
    border-color: var(--neo-lime);
}

.service-enquiry-heading {
    padding: 34px 76px 26px 38px;
}

.service-enquiry-heading .eyebrow {
    margin-bottom: 12px;
}

.service-enquiry-heading h2 {
    margin-bottom: 12px;
    color: white;
}

.service-enquiry-heading > p:last-child {
    max-width: 660px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .55);
}

.service-enquiry-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(290px, .82fr);
    gap: 1px;
    background: rgba(255, 255, 255, .12);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.service-enquiry-form {
    padding: 32px 38px 38px;
    background: #0d0f14;
}

.service-enquiry-form label {
    display: block;
}

.service-enquiry-form label > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    letter-spacing: .06em;
}

.service-enquiry-form input,
.service-enquiry-form textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 15px 17px;
    color: white;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 11px;
    outline: 0;
    transition: background .2s, border-color .2s;
}

.service-enquiry-form input[readonly] {
    color: var(--neo-lime);
    background: rgba(202, 255, 71, .055);
}

.service-enquiry-form textarea {
    min-height: 130px;
    resize: vertical;
}

.service-enquiry-form input:focus,
.service-enquiry-form textarea:focus {
    background: rgba(255, 255, 255, .075);
    border-color: var(--neo-lime);
}

.service-enquiry-form label > small {
    display: block;
    margin: -12px 0 15px;
    color: #ff8d8d;
    font-size: 12px;
}

.service-enquiry-form .form-submit {
    color: #070807;
    background: var(--neo-lime);
    border-radius: 11px;
}

.service-whatsapp-panel {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 38px 34px;
    background:
        radial-gradient(circle at 80% 22%, rgba(37, 211, 102, .18), transparent 32%),
        #090d0c;
}

.whatsapp-status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    color: #7df4a8;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.whatsapp-status i {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(37, 211, 102, .8);
}

.service-whatsapp-panel h3 {
    margin-bottom: 16px;
    color: white;
    font-size: 26px;
}

.service-whatsapp-panel p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
}

.service-whatsapp-panel > strong {
    display: block;
    margin-bottom: 28px;
    color: white;
    font-weight: 400;
}

.whatsapp-enquiry-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    color: #051108;
    background: #25d366;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 500;
    transition: background .25s, transform .25s;
}

.whatsapp-enquiry-button:hover {
    color: #051108;
    background: #7df4a8;
    transform: translateY(-2px);
}

.whatsapp-enquiry-button span {
    font-size: 19px;
}

.service-whatsapp-panel > small {
    margin-top: 15px;
    color: rgba(255, 255, 255, .35);
    font-size: 11px;
}

@media (max-width: 760px) {
    .service-enquiry-modal {
        width: min(100% - 18px, 620px);
        max-height: calc(100vh - 18px);
        border-radius: 18px;
    }

    .service-enquiry-heading {
        padding: 28px 64px 22px 22px;
    }

    .service-enquiry-layout {
        grid-template-columns: 1fr;
    }

    .service-enquiry-form,
    .service-whatsapp-panel {
        padding: 26px 22px;
    }

    .service-enquiry-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-whatsapp-panel {
        min-height: 360px;
    }
}

@media (max-width: 430px) {
    .auryx-3d .contact-form .phone-input-group select,
    .auryx-3d .service-enquiry-form .phone-input-group select {
        width: 104px;
        min-width: 104px;
        flex-basis: 104px;
        padding-left: 9px;
        font-size: 13px;
    }

    .auryx-3d .contact-form .phone-input-group input,
    .auryx-3d .service-enquiry-form .phone-input-group input {
        padding-right: 12px;
        padding-left: 12px;
    }
}

/* Seamless running footer statement */

.auryx-3d .footer-marquee {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    font-size: clamp(4rem, 9vw, 9.5rem);
    line-height: .92;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}

.footer-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: footerMarqueeRun 20s linear infinite;
    will-change: transform;
}

.footer-marquee:hover .footer-marquee-track {
    animation-play-state: paused;
}

.footer-marquee-item {
    display: flex;
    flex: none;
    align-items: center;
    gap: .25em;
    padding-right: .42em;
    white-space: nowrap;
}

.footer-marquee-item b {
    color: white;
    font-weight: 600;
    letter-spacing: -.065em;
}

.auryx-3d .footer-marquee-item span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(202, 255, 71, .72);
    letter-spacing: -.065em;
}

.footer-marquee-item i {
    color: var(--neo-lime);
    font-size: .42em;
    font-style: normal;
    filter: drop-shadow(0 0 12px rgba(202, 255, 71, .55));
}

@keyframes footerMarqueeRun {
    to {
        transform: translateX(-50%);
    }
}

/* Viewport-driven outline-to-solid metric animation */

.auryx-3d strong.animated-metric {
    position: relative;
    display: block;
    width: fit-content;
    color: transparent;
    background-image: linear-gradient(
        90deg,
        #fff 0%,
        #fff 44%,
        var(--neo-lime) 49%,
        rgba(202, 255, 71, .35) 52%,
        transparent 57%,
        transparent 100%
    );
    background-position: 100% 50%;
    background-size: 225% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .72);
    opacity: .72;
    filter: drop-shadow(0 0 0 transparent);
    transform: translateY(14px);
    transition:
        background-position 1.35s cubic-bezier(.16, 1, .3, 1),
        filter 1.1s ease,
        opacity .65s ease,
        transform .9s cubic-bezier(.16, 1, .3, 1),
        -webkit-text-stroke-color 1.1s ease;
    will-change: background-position, transform;
}

.auryx-3d .stat .animated-metric {
    margin-right: auto;
    margin-left: auto;
}

.auryx-3d strong.animated-metric.metric-active,
.auryx-3d strong.animated-metric.metric-complete {
    background-position: 0 50%;
    -webkit-text-stroke-color: rgba(255, 255, 255, .2);
    opacity: 1;
    filter: drop-shadow(0 0 16px rgba(202, 255, 71, .14));
    transform: translateY(0);
}

.auryx-3d .animated-metric + span {
    display: block;
    opacity: .55;
    transform: translateY(7px);
    transition:
        opacity .65s ease .3s,
        transform .75s cubic-bezier(.16, 1, .3, 1) .25s;
}

.auryx-3d .animated-metric.metric-active + span,
.auryx-3d .animated-metric.metric-complete + span {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .auryx-3d strong.animated-metric,
    .auryx-3d strong.animated-metric.metric-active,
    .auryx-3d strong.animated-metric.metric-complete {
        background-position: 0 50%;
        -webkit-text-stroke-color: rgba(255, 255, 255, .2);
        opacity: 1;
        filter: none;
        transform: none;
    }

    .auryx-3d .animated-metric + span {
        opacity: 1;
        transform: none;
    }
}

/* Final minimal responsive navigation and service outcomes */

body.menu-open {
    overflow: hidden;
}

.auryx-3d .testimonial-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 60px max(24px, calc((100vw - 1380px) / 2));
    content-visibility: visible;
    contain-intrinsic-size: none;
}

.auryx-3d .testimonial-label {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.auryx-3d .testimonial-label > span {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0;
    place-items: center;
    color: var(--neo-lime);
    border: 1px solid rgba(202, 255, 71, .38);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
}

.auryx-3d .testimonial-label .eyebrow {
    margin: 2px 0 0;
}

.auryx-3d .testimonial-label h2 {
    max-width: 760px;
    margin: 8px 0 0;
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.auryx-3d .testimonial-shell {
    min-height: 320px;
    padding: 46px 52px 92px;
    overflow: hidden;
    border-radius: 22px;
    touch-action: pan-y;
}

.auryx-3d .testimonial-shell .quote-mark {
    display: none;
}

.auryx-3d .testimonial-shell .service-outcome.active {
    display: flex;
    min-height: 180px;
    flex-direction: column;
}

.auryx-3d .testimonial-shell .service-outcome > p {
    max-width: 980px;
    margin: 0;
    font-size: clamp(32px, 2.35vw, 40px);
    line-height: 1.22;
    letter-spacing: -.03em;
}

.auryx-3d .testimonial-shell .service-outcome footer {
    margin-top: auto;
    padding-top: 26px;
    font-size: 15px;
}

.auryx-3d .testimonial-nav {
    right: 34px;
    bottom: 28px;
    left: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 8px;
}

.auryx-3d .testimonial-nav button {
    width: 50px;
    height: 50px;
    border-style: solid;
    border-color: rgba(255, 255, 255, .25);
    font-size: 21px;
}

@media (max-width: 1120px) {
    .auryx-3d .mobile-toggle {
        position: relative;
        z-index: 3;
        display: flex;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 14px;
        box-shadow: inset 0 1px rgba(255, 255, 255, .06);
    }

    .auryx-3d .mobile-toggle span:not(.sr-only) {
        display: block;
        width: 21px;
        height: 2px;
        flex: 0 0 2px;
        background: #fff;
        border-radius: 999px;
        transform: none;
        transform-origin: center;
        transition: opacity .22s, transform .3s cubic-bezier(.2, .8, .2, 1), background .25s;
    }

    .auryx-3d.menu-open .mobile-toggle {
        background: var(--neo-lime);
        border-color: var(--neo-lime);
    }

    .auryx-3d.menu-open .mobile-toggle span:not(.sr-only) {
        background: #080908;
    }

    .auryx-3d.menu-open .mobile-toggle span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .auryx-3d.menu-open .mobile-toggle span:nth-child(2) {
        opacity: 0;
        transform: scaleX(.35);
    }

    .auryx-3d.menu-open .mobile-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .auryx-3d .main-navigation {
        height: 100dvh;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

@media (max-width: 850px) {
    .auryx-3d .testimonial-section {
        gap: 18px;
        padding: 44px 16px;
    }

    .auryx-3d .testimonial-label {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .auryx-3d .testimonial-label > span {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .auryx-3d .testimonial-label .eyebrow {
        font-size: 10px;
    }

    .auryx-3d .testimonial-label h2 {
        max-width: 520px;
        margin-top: 6px;
        font-size: clamp(28px, 7.8vw, 34px);
        line-height: 1.08;
    }

    .auryx-3d .testimonial-shell {
        min-height: 350px;
        padding: 28px 22px 84px;
        border-radius: 18px;
    }

    .auryx-3d .testimonial-shell .service-outcome.active {
        min-height: 238px;
    }

    .auryx-3d .testimonial-shell .service-outcome > p {
        font-size: clamp(22px, 6.2vw, 28px);
        line-height: 1.3;
    }

    .auryx-3d .testimonial-shell .service-outcome footer {
        padding-top: 22px;
        font-size: 13px;
    }

    .auryx-3d .testimonial-shell .service-outcome footer span {
        display: block;
        margin-top: 4px;
    }

    .auryx-3d .testimonial-nav {
        right: 18px;
        bottom: 18px;
        left: 18px;
        grid-template-columns: 1fr auto auto;
    }

    .auryx-3d .testimonial-nav button {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .auryx-3d .testimonial-counter {
        margin-right: 0;
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .auryx-3d .brand,
    .auryx-3d .site-header.scrolled .brand {
        width: clamp(136px, 40vw, 154px);
    }

    .auryx-3d .mobile-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        padding: 0;
    }

    .auryx-3d .main-navigation {
        justify-content: flex-start;
        padding: 104px 24px 34px;
    }

    .auryx-3d .main-navigation a {
        padding: 14px 0;
        font-size: clamp(22px, 7vw, 27px);
    }
}

@media (max-width: 480px) {
    .auryx-3d .mobile-quick-actions a:first-child {
        display: none;
    }

    .auryx-3d .testimonial-section {
        padding-right: 12px;
        padding-left: 12px;
    }

    .auryx-3d .testimonial-shell {
        min-height: 370px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .auryx-3d .testimonial-shell .service-outcome.active {
        min-height: 255px;
    }
}

/* Final unified services menu trigger */
.auryx-3d .service-menu-trigger-row {
    display: block;
    border: 0;
}

.auryx-3d .service-menu-toggle {
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    color: rgba(255, 255, 255, .65);
    background: transparent;
    border: 0;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
}

.auryx-3d .service-menu-toggle:hover,
.auryx-3d .service-menu-toggle:focus-visible,
.auryx-3d .service-menu-toggle.active,
.auryx-3d .navigation-services.is-open .service-menu-toggle {
    color: white;
    background: rgba(255, 255, 255, .09);
}

.auryx-3d .service-menu-label,
.auryx-3d .service-menu-chevron {
    display: block;
}

.auryx-3d .service-menu-chevron {
    margin-top: -2px;
    color: var(--neo-lime);
    font-size: 15px;
}

.auryx-3d .service-dropdown-overview {
    border-bottom: 1px solid rgba(202, 255, 71, .16);
}

@media (max-width: 1120px) {
    .auryx-3d .service-menu-trigger-row {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }

    .auryx-3d .service-menu-toggle {
        width: 100%;
        min-height: 52px;
        justify-content: flex-start;
        gap: 10px;
        padding: 13px 0;
        color: rgba(255, 255, 255, .58);
        background: transparent;
        border: 0;
        border-radius: 0;
        font-size: 24px;
    }

    .auryx-3d .service-menu-toggle:hover,
    .auryx-3d .service-menu-toggle:focus-visible,
    .auryx-3d .service-menu-toggle.active,
    .auryx-3d .navigation-services.is-open .service-menu-toggle {
        color: var(--neo-lime);
        background: transparent;
    }

    .auryx-3d .service-menu-chevron {
        margin-top: -3px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .auryx-3d .service-menu-toggle {
        font-size: clamp(22px, 7vw, 27px);
    }
}
