.sec-head {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 3rem;
}

.sec-head.center {
    align-items: center;
    text-align: center;
}

.eyebrow {
    font-size: 17px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.7;
    width: fit-content;
}

.sec-head h2 {
    line-height: 1.1;
    font-weight: 800;
    font-size: 3.1rem;
}

.sec-head.large h2 {
    font-size: 4.2rem;
}

.sec-head h2 span, .sec-head h3 span, .sec-head h4 span, .sec-head h5 span, .sec-head h6 span {
    color: var(--secondary);
    font-family: var(--font-secondary);
    font-style: italic;
    font-weight: 400;
}

.sec-head.white h2, .sec-head.white h3, .sec-head.white h4, .sec-head.white h5, .sec-head.white h6,
.sec-head.white span,
.sec-head.white p {
    color: var(--white);
}


/* ========= NAVBAR ========= */
.navbar {
    position: relative !important;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    padding: 0 calc(var(--section-x-pd) - 20px);
    transition: 0.5s ease;
    display: flex;
    align-items: center !important;
    height: var(--nav-height);
}

/* Navbar when scrolled */
.navbar.scrolled {
    position: sticky !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    height: calc(var(--nav-height) - 15px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: block;
    width: 145px;
}

.nav-logo img{
    width: 100%;
    height: auto;
}

.nav-logo.scrolled img {
    width: 120px !important;
}

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.nav-links a.nav-link {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    padding: 6px;
    line-height: 1;
    color: var(--black);  
    transition: var(--transition);
}

.nav-links a.nav-link:hover,
.nav-links a.active,
.dropdown-li.open > a.nav-link {
    color: var(--secondary);
}

/* Dropdown */
.dropdown-li {
    position: relative;
}

.dropdown-li > a.nav-link {
    display: flex;
    align-items: center;
}

/* Icon rotation */
a.nav-link .dropdown {
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 4px;
    transition: var(--transition);
}

.dropdown-li.open .dropdown {
    transform: rotate(180deg) translateY(1.5px);
}

/* Dropdown wrapper */
.dropdown-li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 0 !important;
    transform: translateX(-50%) translateY(55px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 5px;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    padding: 0;
    z-index: 999;
}

.dropdown-li.open ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(15px);
    backdrop-filter: blur(16px);
}

/* Dropdown links */
.sub-menu a.nav-link {
    font-size: 15px;
    padding: 18px 35px 18px 25px;
    min-width: max-content;
}

.sub-menu a.nav-link:hover,
.sub-menu a.active {
    color: var(--white);
    background-color: var(--secondary);
}


/* ========== hm-banner ========== */
.hm-banner {
    position: relative;
    padding-top: 40px;
    overflow: hidden;
}

.hm-banner-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    position: relative;
}

.hm-banner .eyebrow {
    font-size: 18px;
    color: var(--black);
}

.hm-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.hm-banner h1 span {
    background-color: var(--secondary);
    color: var(--white);
    transform: rotate(-1deg);
    padding: 0 20px;
}

@keyframes moving-element {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.moving-element {
    width: 480px;
    animation: moving-element 5.604s ease-in-out infinite;
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 1;
}

.moving-element img {
    width: 100%;
    height: auto;
}



/* scroll-strip */
.scroll-strip {
    background: var(--primary);
    padding: 20px 0;
    --gap: 25px;
    overflow: hidden;
}

.scroll-strip .scrolling {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.scroll-strip .scroll-track {
    display: flex;
    gap: var(--gap);
    min-width: max-content;
    flex-shrink: 0;
    animation: scroll-strip-move var(--duration, 20s) linear infinite;
    will-change: transform;
}

.scroll-strip .scrolling:hover .scroll-track {
    animation-play-state: paused;
}

.scroll-strip .scrolling span {
    --font-size: 33px;
    font-size: var(--font-size);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    display: flex;
    gap: var(--gap);
    align-items: center;
    min-width: max-content;
    line-height: 1;
}

.scroll-strip .scrolling span::after {
    content: '/';
    font-weight: 400;
    font-size: calc(var(--font-size) + 2px);
    color: inherit;
}

@keyframes scroll-strip-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--track-width, 50%)));
    }
}



/* ========== world-stat ========== */
.world-stat {
    display: flex;
    flex-direction: column;
    border: 2.5px solid var(--divider);
    border-radius: 10px;
    overflow: hidden;
}

.world-stat .img-stats {
    width: 100%;
    position: relative;
}

.world-stat .img-stats .img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.world-stat .img-stats .stats {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.world-stat .img-stats .stats .stat-box:last-child {
    display: none;
}

.world-stat .img-stats .stats .stat-box {
    position: absolute;
}

.stat-box.portfolio {
    top: 8%;
    left: 9%;
}

.stat-box.engineers {
    left: 10%;
    bottom: 15%;
}

.stat-box.projects {
    top: 46%;
    right: 10%;
}

.stat-box {
    background: var(--white);
    padding: 20px;
    border: 2px solid var(--divider);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-box .con {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.stat-box .con .stat {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1;
}

/* large-icon */
.stat-box.large {
    gap: 25px;
    padding: 35px;
}

.stat-box.large .con .stat {
    font-size: 3.8rem;
}

.world-stat .stat-box.large {
    display: none;
    width: 100%;
    justify-content: center;
    border: none;
}



/* ========== services-col ========== */
.services-col {
    display: flex;
    flex-direction: column;
    --gap: 60px
}

.services-col .service-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    align-items: center;
    gap: var(--gap);
    padding: 25px var(--section-x-pd);
    border-top: var(--border);
    transition: var(--transition);
    position: relative;
    color: inherit;
}

.services-col .service-row:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.services-col .service-row .ser-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap);
    transition: var(--transition);
}

.ser-head .num {
    --width: 75px;
    color: var(--black);
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    font-family: var(--font-instrument);
    transition: var(--transition);
    width: var(--width);
    min-width: var(--width);
}

.ser-head h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    transition: var(--transition);
}

.service-row .con {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: var(--gap);
}

.service-row p {
    transition: var(--transition);
    margin-bottom: 0;
}

.service-row:hover .num,
.service-row:hover h3,
.service-row:hover p {
    color: var(--white);
}

.btn-arrow {
    --size: 60px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center; 
    flex-shrink: 0;
    opacity: 0;
    transition: var(--transition);
}

.btn-arrow::after {
    content: '\f061';
    font-family: var(--fa-family-classic);
    font-weight: 900;
    font-size: 20px;
    color: inherit;
    rotate: -45deg;
    transition: var(--transition);
}

.service-row:hover .btn-arrow {
    background-color: var(--white);
    color: var(--primary);
    opacity: 1;
}


/* mid-cta */
.mid-cta {
    background: var(--secondary);
    padding: 25px var(--section-x-pd);
}


/* ========== why-us ========== */
.why-us {
    position: relative;
    overflow: hidden;
    min-height: 45vh;
    display: flex;
    align-items: center;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 1.2s ease;
    z-index: 1;
}

.why-video.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.why-us-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 3;
}

.why-us .container {
    position: relative;
    z-index: 4;
}

.why-us-list {
    display: flex;
    flex-direction: column;
}

.why-us-item {
    position: relative;
    --padding-y: 50px;
}

.why-us-item::before {
    content: '';
    position: absolute;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.25);
    bottom: 0;
    left: 0;
    right: 0;
}

.why-us-item.active::after {
    content: '';
    position: absolute;
    width: 12%;
    height: 2.5px;
    background: var(--white);
    bottom: 0;
    left: 0;
}

.why-us-item .why-us-toggle {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: var(--padding-y) 0;
    cursor: pointer;
}

.why-us-item.active .why-us-toggle {
    padding-bottom: calc(var(--padding-y) - 30px);
}

.why-us-toggle h3 {
    color: rgba(255, 255, 255, 0.45);
    font-size: 2rem;
    font-weight: 700;
    transition: var(--transition), font-size 0.5s ease;
}

.why-us-item.active .why-us-toggle h3 {
    color: var(--white);
    font-size: 3.4rem;
}

.why-us-toggle:hover h3 {
    color: rgba(255, 255, 255, 0.8);
}

.why-us-item.active .why-us-toggle:hover h3 {
    color: var(--white);
}

/* smooth expand/collapse */
.why-us-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.55s ease;
}

.why-us-item.active .why-us-panel {
    grid-template-rows: 1fr;
}

.why-us-panel-inner {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.45s ease 0s, transform 0.45s ease 0s;
}

.why-us-item.active .why-us-panel-inner {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

.why-us-item .why-us-panel-inner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    padding-bottom: var(--padding-y);
}

.why-us-accent {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin-bottom: 22px;
}




/* ========== engagement ========== */
.engagement-wrap {
    position: relative;
}

.engagement-list {
    display: flex;
    flex-direction: column;
}

.engagement-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px 0;
    border-bottom: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.engagement-item:first-child {
    border-top: var(--border);
}

.engagement-item .icon {
    width: 45px;
}

.engagement-item .con {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.engagement-item h3 {
    font-size: 2.5rem;
    color: var(--black);
    transition: var(--transition);
}

/* smooth expand/collapse, same pattern as .why-us-panel */
.engagement-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
}

.engagement-item.active .engagement-panel {
    grid-template-rows: 1fr;
}

.engagement-panel-inner {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.engagement-item.active .engagement-panel-inner {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease 0.15s, transform 0.45s ease 0.15s;
}

.engagement-panel-inner p {
    padding-top: 8px;
    margin-bottom: 0 !important;
}

/* floating image that trails the active row and overflows the column */
.engagement-image {
    position: absolute;
    top: 0;
    right: -90px;
    width: 500px;
    border-radius: 4px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateX(25px) scale(0.96);
    pointer-events: none;
    z-index: 5;
    transition: top 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
}

.engagement-image.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.engagement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* ========== technologies tabs ========== */
.tech-tabs-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-tabs-list {
    display: flex;
    flex-direction: column;
}

.tech-tab {
    display: block;
    width: 100%;
    min-width: fit-content;
    background: transparent;
    border: none;
    padding: 16px 12px;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--grey);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tech-tab::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 2px;
    background: var(--divider);
}

.tech-tab::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.tech-tab.active {
    color: var(--black);
    font-weight: 800;
}

.tech-tab.active::after {
    transform: scaleY(1);
}

.tech-tab:hover {
    color: var(--black);
}

.tech-tabs-panels {
    position: relative;
}

.tech-panel {
    display: none;
}

.tech-panel.active {
    display: block;
    animation: tech-panel-in 0.4s ease;
}

@keyframes tech-panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--divider);
    border: 2.5px solid var(--divider);
    border-radius: 10px;
    overflow: hidden;
}

.tech-cell {
    background: var(--white);
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 28px;
    aspect-ratio: 2 / 1;
}

.tech-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-cell.empty {
    background: var(--bg-light);
}

.tech-cell.empty {
    display: none;
}



/* ========== our-work ========== */
.work-col {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.work-col .work-card {
    --gap: 50px;
    --padding-y: 60px;
    --padding-x: 35px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--gap);
    padding: var(--padding-y) var(--padding-x);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.work-col .work-card:last-child {
    border-bottom: none;
}

.work-col .work-card .img {
    display: flex;
    flex-direction: row;
    gap: var(--gap);
    flex-shrink: 0;
}

.work-col .work-card:nth-child(odd) .img {
    flex-direction: row-reverse;
}

.work-col .work-card .img img {
    --height: 250px;
    width: 100%;
    height: var(--height);
    min-height: var(--height);
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4 / 3;
    border-radius: 5px;
}

.work-card .num {
    --width: 55px;
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    font-family: var(--font-instrument);
    width: var(--width);
    min-width: var(--width);
    transition: var(--transition);
}

.work-card:hover .num {
    font-size: 4rem;
}

.work-col .work-card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}

.work-col .work-card .content .con {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 15px;
}

.work-col .work-card .content .con h3 {
    font-size: 2rem;
    transition: var(--transition);
}

.work-col .work-card:hover .content .con h3 {
    font-size: 3rem;
}


.work-col .work-card .content .con h3,
.work-col .work-card .content .con p {
    color: var(--white);
    transition: var(--transition);
    text-align: end;
}



/* ========== contact form ========== */
.contact-form-card {
    padding: 30px;
    background: var(--gradient);
    height: 100%;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1.5px solid var(--divider);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    padding: 0;
}

.form-group textarea {
    resize: none;
    line-height: 1.5;
    max-height: 75px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--grey);
}

.form-group {
    transition: var(--transition);
}

.form-group:focus-within {
    border-color: var(--primary);
}

.select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 20px;
}

.select-wrap i {
    position: absolute;
    right: 0;
    font-size: 13px;
    color: var(--grey);
    pointer-events: none;
    transition: var(--transition);
}

.form-group:focus-within .select-wrap i {
    color: var(--primary);
}

.form-submit {
    margin-top: 25px;
}

.form-group .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.form-group .wpcf7-not-valid-tip {
    font-size: 12px;
    color: var(--secondary);
    margin-top: 4px;
}

.wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 12px 18px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    border: 1.5px solid var(--divider) !important;
    color: var(--black) !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    border-color: var(--secondary) !important;
    color: var(--secondary) !important;
}

.wpcf7-spinner {
    margin-left: 10px;
}


/* ========== Footer ========== */
.footer {
    background: var(--black);
    padding: 0 var(--section-x-pd);
    padding-top: var(--section-y-pd);
    display: flex;
    flex-direction: column;
}

.ft-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.ft-col h5 {
    color: var(--secondary);
    text-transform: uppercase;
    min-width: max-content;
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ft-links a {
    color: var(--white);
    text-transform: capitalize;
    font-size: 18px;
    line-height: 145%;
    width: fit-content;
    padding: 3px 2px;
    position: relative;
    transition: var(--transition);
}

.ft-links a::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background: var(--hue-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.ft-links a:hover {
    color: var(--hue-blue);
}

.ft-links a:hover::after {
    transform: scaleX(1);
}

.socials {
    display: flex;
    flex-direction: row;
    gap: 13px;
}

.socials a {
    --size: 38px;
    width: var(--size);
    height: var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    transition: var(--transition);
}

.socials a i {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.socials a:hover {
    background: var(--primary);
}

.ft-con {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-con b,
.ft-con p {
    font-size: 17px;
    margin-bottom: 0;
}

.ft-con b {
    color: var(--white);
}

.ft-con p {
    color: rgba(255, 255, 255, 0.5);
}

.ft-logo {
    padding: 40px 0;
}

.ft-logo img {
    width: 80%;
    height: auto;
}

.ft-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
    padding: 30px 0;
}

.ft-bottom p {
    color: var(--white);
    margin-bottom: 0;
    font-size: 18px;
}

.ft-bottom .ft-links {
    flex-direction: row;
    gap: 15px;
}

.ft-bottom .ft-links .seprator {
    position: relative;
    top: 2px;
    bottom: 2px;
    width: 2px;
    background: var(--white);
}



/* ========== thank-you page ========== */
.ty-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 55vh;
}

.ty-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.ty-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.ty-con h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.ty-con h1 span {
    color: var(--secondary);
    font-family: var(--font-secondary);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}



/* ========== 404 ========== */
.error-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-height));
    overflow: hidden;
}

.error-page-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.error-num {
    font-family: var(--font-instrument);
    font-style: italic;
    font-weight: 400;
    font-size: 11rem;
    line-height: 0.9;
    color: var(--primary);
}

.error-page h2 {
    font-size: 3rem;
}

.error-page .eyebrow {
    margin: 0 auto;
}

.error-sphere {
    opacity: 0.15;
    right: -6rem;
    bottom: -6rem;
    z-index: 1;
}