/* =========================================================
   REAL GRAPHICS - COMMON.CSS
   Page-wise stylesheet generated from the existing style.css
========================================================= */

/* 01. ROOT VARIABLES / GLOBAL COLORS / FONTS */
:root {
    --green: #8fbd2f;
    --green-dark: #5a9f35;
    --blue: #0095c7;
    --blue-dark: #0c6fa6;
    --ink: #0b2734;
    --ink-soft: #173e50;
    --paper: #f5f8f9;
    --white: #ffffff;
    --muted: #71828b;
    --line: rgba(11, 39, 52, .14);
    --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --font-body: "Manrope", Arial, sans-serif;
    --font-script: "Mrs Saint Delafield", "Brush Script MT", cursive;
    --container: min(1280px, calc(100vw - 64px));
    --header-h: 88px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* 02. GLOBAL RESET / BASE STYLES */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

main {
    min-height: 60vh;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

::selection {
    color: var(--ink);
    background: var(--green);
}

/* 03. PAGE LOADER */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 24px;
    background: var(--ink);
    color: var(--white);
    transition: transform .9s var(--ease), visibility .9s;
}

.page-loader.is-hidden {
    transform: translateY(-105%);
    visibility: hidden;
}

.page-loader__mark {
    font-family: var(--font-display);
    font-size: clamp(68px, 12vw, 160px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.06em;
    color: var(--green);
}

.page-loader__line {
    width: min(280px, 60vw);
    height: 2px;
    background: rgba(255, 255, 255, .2);
    overflow: hidden;
}

.page-loader__line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--blue);
    animation: loadingLine 1s var(--ease) forwards;
}

@keyframes loadingLine {
    to {
        width: 100%;
    }
}

/* 04. SCROLL PROGRESS BAR */
.scroll-progress {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--green);
}

/* 05. CUSTOM CURSOR */
.cursor-dot,
.cursor-ring {
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
}

.cursor-ring {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(143, 189, 47, .7);
    transition: width .25s, height .25s, background .25s;
}

body.cursor-hover .cursor-ring {
    width: 62px;
    height: 62px;
    background: rgba(143, 189, 47, .12);
}

/* 06. MAIN HEADER / DESKTOP NAVIGATION */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 39, 52, 0.12);
    transition: background .35s, transform .35s, border-color .35s, box-shadow .35s;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    border-color: rgba(11, 39, 52, .12);
    backdrop-filter: blur(18px);
    box-shadow: 0 6px 25px rgba(11, 39, 52, .08);
}

.site-header.is-hidden {
    transform: translateY(-110%);
}

.site-header__inner {
    height: var(--header-h);
    width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    width: 220px;
    height: 72px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: visible;
}

.brand img {
    width: 100%;
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    object-position: left center;
    transform: scale(1.15);
    transform-origin: left center;
    opacity: 1;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
    transition: color .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--green-dark);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--green);
    transition: right .35s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    right: 0;
}

.site-header.is-scrolled .desktop-nav a {
    color: var(--ink);
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active {
    color: var(--green-dark);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(11, 39, 52, .25);
    color: var(--ink);
    background: transparent;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .3s,
        color .3s,
        border-color .3s,
        transform .3s;
}

.header-cta i {
    font-style: normal;
    color: var(--green);
    font-size: 20px;
}

.header-cta:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-2px);
}

.site-header.is-scrolled .header-cta {
    color: var(--ink);
    border-color: rgba(11, 39, 52, .25);
}

.site-header.is-scrolled .header-cta:hover {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(11, 39, 52, .20);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--ink);
}

.site-header.is-scrolled .menu-toggle {
    border-color: rgba(11, 39, 52, .20);
}

.site-header.is-scrolled .menu-toggle span {
    background: var(--ink);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    padding: 28px 5vw;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-105%);
    transition: transform .75s var(--ease);
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    transform: translateY(0);
}

.mobile-menu__top,
.mobile-menu__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mobile-menu__close {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu nav {
    margin: 20px 0;
    display: grid;
}

.mobile-menu nav a {
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    padding: 10px 0;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.mobile-menu nav a span {
    color: var(--green);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
}

.mobile-menu__foot {
    align-items: flex-end;
    text-transform: none;
    flex-wrap: wrap;
}

@media (max-width:980px) {
    :root {
        --header-h: 76px;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .brand {
        width: 190px;
        height: 65px;
    }

    .brand img {
        max-height: 62px;
        transform: scale(1.08);
    }
}

@media (max-width:720px) {
    :root {
        --container: calc(100% - 28px);
        --header-h: 70px;
    }

    .site-header__inner {
        gap: 14px;
    }

    .brand {
        width: 165px;
        height: 60px;
    }

    .brand img {
        max-height: 56px;
        transform: scale(1.05);
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }
}

@media (max-width:480px) {
    .brand {
        width: 145px;
    }

    .brand img {
        max-height: 52px;
    }
}

/* 08. GLOBAL TYPOGRAPHY / COMMON ELEMENTS*/
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
}

h1 em,
h2 em {
    color: var(--green);
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 64px;
}

.section-heading h2 {
    margin: 12px 0 0;
    font-size: 60px;
    font-weight: 800;
    line-height: .86;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading h2 em {
    display: inline-block;
    margin-left: .08em;
    font-size: .86em;
}

.section-heading>p {
    width: min(420px, 100%);
    margin: 0;
    color: var(--muted);
}

.section-heading--light {
    color: var(--white);
}

.section-heading--light>p {
    color: rgba(255, 255, 255, .62);
}

.section-heading--light .eyebrow {
    color: var(--green);
}

.section-index {
    display: flex;
    gap: 18px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.section-index span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--blue);
    font-size: 13px;
}

.section-index b {
    font-size: 25px;
    letter-spacing: .07em;
    color: var(--green);
    line-height: 30px;
}

.section-index--light {
    color: var(--white);
}

.section-index--light span {
    border-color: rgba(255, 255, 255, .2);
    color: var(--green);
}

.display-lead {
    margin: 0;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: 0.5px;
}

.display-lead strong {
    color: var(--green);
    font-weight: 800;
}

.display-lead--light {
    color: var(--white);
}

/* 09. GLOBAL BUTTONS / LINKS*/
.btn {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
}

.btn span {
    font-size: 22px;
    font-weight: 400;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn--green {
    background: var(--green);
    color: var(--ink);
}

.btn--green:hover {
    background: var(--white);
}

.btn--outline-light {
    border-color: rgba(255, 255, 255, .35);
    color: var(--white);
}

.btn--outline-light:hover {
    border-color: var(--green);
    color: var(--green);
}

.underlined-link {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.underlined-link span {
    color: var(--green);
    font-size: 20px;
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

.section-blue {
    background: var(--blue-dark);
    color: var(--white);
}

/* 10. SCROLL REVEAL ANIMATION*/
[data-reveal] {
    opacity: 0;
    transform: translateY(46px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

@media (max-width:720px) {
    body {
        font-size: 14px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 36px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .display-lead {
        font-size: 26px;
    }
}

/* ================= COMMON INNER PAGE HERO ================= */
/*  20. COMMON INNER PAGE HERO */
.inner-hero {
    position: relative;
    min-height: 80svh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-h) + 100px) 0 88px;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}


.inner-hero__word {
    position: absolute;
    z-index: -1;
    right: -2vw;
    bottom: -3vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .09);
    font-family: var(--font-display);
    font-size: 22vw;
    font-weight: 900;
    line-height: .75;
    letter-spacing: -.07em;
}

.inner-hero__inner {
    position: relative;
}

.inner-hero .eyebrow {
    color: var(--green);
}

.inner-hero h1 {
    max-width: 1120px;
    margin: 26px 0 56px;
    font-size: clamp(60px, 7vw, 90px);
    font-weight: 700;
    line-height: .88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.inner-hero h1 em {
    font-size: .68em;
    margin-left: .18em;
}

.inner-hero__foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.inner-hero__foot p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .64);
}

.inner-hero__foot span {
    color: var(--green);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width:980px) {
    .inner-hero h1 {
        font-size: 70px;
    }
}

@media (max-width:720px) {
    .inner-hero {
        min-height: 72svh;
        padding-bottom: 60px;
    }

    .inner-hero h1 {
        font-size: 55px;
    }

    .inner-hero__foot {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* COMMON CTA / FOOTER / 404  */

.closing-cta {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
    border-top: 4px solid var(--blue);
}

.closing-cta__orb {
    position: absolute;
    right: -12vw;
    top: -18vw;
    width: 45vw;
    height: 45vw;
    border: 1px solid rgba(0, 149, 199, .18);
    border-radius: 50%;
}

.closing-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: start;
}

.closing-cta .eyebrow,
.closing-cta h2 {
    grid-column: 1;
}

.closing-cta h2 {
    margin: 20px 0 0;
    font-size: 60px;
    font-weight: 700;
    line-height: .88;
    letter-spacing: -.04em;
}

.closing-cta .circle-link {
    grid-column: 2;
    align-self: end;
    justify-self: end;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 50%;
    background: var(--green);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    line-height: .95;
    text-transform: uppercase;
    transform: rotate(-6deg);
    transition: transform .4s var(--ease), background .3s;
}

.circle-link:hover {
    transform: rotate(0) scale(1.04);
    background: var(--blue);
    color: var(--white);
}

.circle-link i {
    font-style: normal;
    font-size: 24px;
}

/*  42. WEBSITE FOOTER */


.site-footer {
    position: relative;
    padding: 80px 0 24px;
    color: var(--white);
    overflow: hidden;
    background: radial-gradient(circle at 88% 20%, rgba(143, 189, 47, .14), transparent 28%), radial-gradient(circle at 12% 80%, rgba(0, 149, 199, .14), transparent 30%), linear-gradient(135deg, #071b26 0%, #0b2734 45%, #0d3443 72%, #071b26 100%);
}


/* subtle grid / texture */

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}


/* large decorative word */

.site-footer::after {
    content: "REAL";
    position: absolute;
    right: -25px;
    bottom: -25px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .025);
    font-family: var(--font-display);
    font-size: 15vw;
    font-weight: 900;
    line-height: .7;
    letter-spacing: -.06em;
    pointer-events: none;
}


/* make content above background decoration */

.site-footer__grid,
.site-footer__bottom {
    position: relative;
    z-index: 2;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr .55fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 70px;
}

.footer-brand img {
    width: 220px;
    max-height: 90px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
    opacity: .95;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .55);
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-col h3 {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-col a,
.footer-col p {
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-socials {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.footer-socials a {
    color: rgba(255, 255, 255, .62);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-socials a:hover {
    color: var(--white);
}

.footer-col--action h3 {
    max-width: 260px;
    color: var(--white);
    font-size: 28px;
    line-height: .95;
}

.text-arrow {
    display: inline-flex;
    gap: 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--green);
    color: var(--green) !important;
    font-family: var(--font-display);
    font-size: 18px !important;
    font-weight: 700;
    text-transform: uppercase;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/*  43. 404 / NOT FOUND PAGE */
.not-found {
    min-height: 80vh;
    display: grid;
    place-items: center;
    padding: 160px 0 100px;
    text-align: center;
}

.not-found span {
    color: var(--green);
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
}

.not-found h1 {
    font-size: clamp(50px, 8vw, 100px);
}

@media (max-width:980px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-col--action {
        grid-column: auto;
    }

    .closing-cta h2 {
        font-size: 50px;
    }
}

@media (max-width:720px) {
    .closing-cta {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .closing-cta__inner {
        /* grid-template-columns: 1fr; */
        display: block;
    }

    .closing-cta .circle-link {
        justify-self: start;
        width: 150px;
        height: 150px;
        font-size: 17px;
        font-weight: 600;
    }



    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-col--action {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .closing-cta h2 {
        font-size: 38px;
        margin-bottom: 20px;
    }
}

/* FOOTER SOCIAL ICONS */
.footer-brand__socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.footer-brand__socials a {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;

    background: transparent;
    color: var(--white);

    transition:
        background .3s,
        border-color .3s,
        color .3s,
        transform .3s var(--ease);
}

.footer-brand__socials svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Facebook shape needs fill */
.footer-brand__socials a:first-child svg path {
    fill: currentColor;
    stroke: none;
}

/* YouTube body outline */
.footer-brand__socials a:nth-child(3) svg path:first-child {
    fill: none;
    stroke: currentColor;
}

/* YouTube play icon */
.footer-brand__socials a:nth-child(3) svg path:last-child {
    fill: currentColor;
    stroke: none;
}

.footer-brand__socials a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--ink);

    transform: translateY(-4px);
}


/* CONTACT WITH ICONS */

.footer-contact {
    gap: 14px;
}

.footer-contact__item {
    width: 100%;
    display: flex !important;
    align-items: flex-start;
    gap: 11px;
}

.footer-contact__icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: var(--green);
    margin-top: -4px;
    transition: background .3s, color .3s, border-color .3s;
}

.footer-contact__icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-contact__item:hover .footer-contact__icon {
    background: var(--green);
    border-color: var(--green);
    color: var(--ink);
}

.footer-contact__item>span:last-child {
    padding-top: 1px;
}

.footer-contact__address p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.6;
}


/* BETTER FOOTER LOGO + TEXT */

.footer-brand p {
    max-width: 300px;
    margin-top: 20px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    line-height: 1.65;
}


/* MOBILE */

@media (max-width:720px) {

    .footer-brand__socials {
        margin-top: 18px;
    }

    .footer-brand__socials a {
        width: 40px;
        height: 40px;
    }

    .footer-contact__item {
        max-width: 340px;
    }

}

/* FOOTER - PREMIUM BACKGROUND ANIMATION */

.site-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}


/* moving diagonal pattern */

.site-footer::before {
    content: "";
    position: absolute;
    inset: -60%;
    z-index: 0;
    background: repeating-linear-gradient(115deg, transparent 0, transparent 55px, rgba(255, 255, 255, .018) 56px, rgba(255, 255, 255, .018) 57px);
    animation: footerLinesMove 28s linear infinite;
    pointer-events: none;
}


/* soft moving light sweep */

.site-footer::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: -30%;
    left: -45%;
    width: 38%;
    height: 170%;
    background: linear-gradient(100deg, transparent 0%, rgba(143, 189, 47, .015) 28%, rgba(143, 189, 47, .09) 50%, rgba(0, 149, 199, .045) 62%, transparent 100%);
    filter: blur(22px);
    transform: skewX(-18deg);
    animation: footerLightSweep 11scubic-bezier(.45, 0, .55, 1)infinite;
    pointer-events: none;
}


/* footer content always above animation */

.site-footer__grid,
.site-footer__bottom,
.back-to-top {
    position: relative;
    z-index: 3;
}


/* SMALL GREEN ACCENT LINE */

.site-footer__grid::before {
    content: "";

    position: absolute;

    top: -40px;
    left: 0;

    width: 55px;
    height: 2px;

    background: var(--green);

    animation: footerAccentPulse 4s ease-in-out infinite;
}


/* ANIMATIONS */

@keyframes footerLinesMove {

    from {
        transform:
            translate3d(-40px, -40px, 0);
    }

    to {
        transform:
            translate3d(80px, 80px, 0);
    }

}


@keyframes footerLightSweep {

    0% {
        left: -45%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    55% {
        opacity: .9;
    }

    80% {
        opacity: 0;
    }

    100% {
        left: 125%;
        opacity: 0;
    }

}


@keyframes footerAccentPulse {

    0%,
    100% {
        width: 55px;
        opacity: .55;
    }

    50% {
        width: 110px;
        opacity: 1;
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .site-footer::before {
        animation-duration: 38s;
    }

    .site-footer::after {
        width: 55%;
        animation-duration: 14s;
    }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

    .site-footer::before,
    .site-footer::after,
    .site-footer__grid::before {
        animation: none !important;
    }

}

/* BACK TO TOP BUTTON */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(11, 39, 52, .22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.88);
    transition: opacity .3s ease, visibility .3s ease, transform .35s var(--ease), background .3s, color .3s, border-color .3s;
}


/* visible after scrolling */

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


.back-to-top span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    transition: transform .3s var(--ease);
}


/* hover */

.back-to-top:hover {
    background: var(--green);
    color: var(--ink);
    border-color: var(--green);
    transform: translateY(-4px) scale(1.04);
}


.back-to-top:hover span {
    transform: translateY(-3px);
}


/* mobile */

@media (max-width: 720px) {

    .back-to-top {
        right: 14px;
        bottom: 14px;

        width: 46px;
        height: 46px;
    }

    .back-to-top span {
        font-size: 19px;
    }

}

/* =========================================================
   UNIFIED INNER PAGE HERO
   About-style hero shared by Services / Portfolio / Blog /
   Contact / FAQ / Career
========================================================= */

.rg-unified-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 90px) 0 90px;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 78% 32%, rgba(143, 189, 47, .20), transparent 28%),
        radial-gradient(circle at 18% 72%, rgba(0, 149, 199, .18), transparent 32%),
        linear-gradient(125deg, #071b25 0%, #0b2734 40%, #103d50 72%, #071c27 100%);
}

.rg-unified-hero__bg {
    position: absolute;
    inset: -20%;
    z-index: -4;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 70px 70px;
    transform: rotate(-7deg) scale(1.15);
    animation: rgHeroGridMove 18s linear infinite;
    opacity: .65;
}

.rg-unified-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: linear-gradient(90deg,
            rgba(5, 19, 27, .94) 0%,
            rgba(5, 19, 27, .80) 42%,
            rgba(5, 19, 27, .40) 68%,
            rgba(5, 19, 27, .64) 100%);
    pointer-events: none;
}

.rg-unified-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    width: 520px;
    height: 520px;
    right: 2%;
    top: 5%;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(143, 189, 47, .20) 0%,
            rgba(143, 189, 47, .07) 40%,
            transparent 70%);
    filter: blur(10px);
    animation: rgHeroGreenGlow 8s ease-in-out infinite;
    pointer-events: none;
}

.rg-unified-hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 430px;
    height: 430px;
    left: -120px;
    bottom: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 149, 199, .22), transparent 68%);
    filter: blur(18px);
    animation: rgHeroBlueGlow 10s ease-in-out infinite;
    pointer-events: none;
}

.rg-unified-hero .inner-hero__word {
    position: absolute;
    z-index: -1;
    right: -2vw;
    bottom: -3vw;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .065);
    font-family: var(--font-display);
    font-size: 21vw;
    font-weight: 900;
    line-height: .75;
    letter-spacing: -.07em;
    pointer-events: none;
}

.rg-unified-hero .inner-hero__inner {
    position: relative;
    z-index: 5;
}

.rg-unified-hero__content {
    position: relative;
    z-index: 5;
    width: min(850px, 68%);
}

.rg-unified-hero .eyebrow {
    color: var(--green);
}

.rg-unified-hero h1 {
    max-width: 850px;
    margin: 24px 0 42px;
    font-family: var(--font-display);
    font-size: clamp(58px, 7vw, 90px);
    font-weight: 700;
    line-height: .87;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.rg-unified-hero h1 em {
    display: inline-block;
    color: var(--green);
    font-family: var(--font-script);
    font-size: .72em;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    animation: rgHeroTitleFloat 5s ease-in-out infinite;
}

.rg-unified-hero .inner-hero__foot {
    max-width: 760px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.rg-unified-hero .inner-hero__foot p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.7;
}

.rg-unified-hero .inner-hero__foot>span {
    flex: 0 0 auto;
    color: var(--green);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.rg-unified-hero__circle {
    position: absolute;
    z-index: 4;
    right: 12vw;
    top: 58%;
    width: clamp(280px, 27vw, 430px);
    aspect-ratio: 1;
    padding: 9px;
    transform: translateY(-50%);
    border: 1px solid rgba(143, 189, 47, .60);
    border-radius: 50%;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .28),
        0 0 55px rgba(143, 189, 47, .09);
    animation: rgHeroImageFloat 6s ease-in-out infinite;
}

.rg-unified-hero__circle::before {
    content: "";
    position: absolute;
    inset: -22px;
    border: 1px dashed rgba(255, 255, 255, .22);
    border-radius: 50%;
    animation: rgHeroCircleRotate 22s linear infinite;
}

.rg-unified-hero__circle::after {
    content: "";
    position: absolute;
    top: 7%;
    right: 9%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 20px rgba(143, 189, 47, .75);
}

.rg-unified-hero__circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes rgHeroGridMove {

    0%,
    100% {
        transform: rotate(-7deg) scale(1.15) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-7deg) scale(1.15) translate3d(35px, 20px, 0);
    }
}

@keyframes rgHeroGreenGlow {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(-40px, 30px, 0) scale(1.12);
    }
}

@keyframes rgHeroBlueGlow {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(55px, -35px, 0) scale(1.15);
    }
}

@keyframes rgHeroImageFloat {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(calc(-50% - 12px)) translateX(-6px);
    }
}

@keyframes rgHeroCircleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rgHeroTitleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@media (max-width: 980px) {
    .rg-unified-hero {
        min-height: 680px;
        padding: calc(var(--header-h) + 75px) 0 75px;
    }

    .rg-unified-hero__content {
        width: 62%;
    }

    .rg-unified-hero__circle {
        right: 4vw;
        width: 280px;
    }

    .section-heading h2 {
        font-size: 35px;
    }

    .rg-unified-hero .inner-hero__foot {
        flex-wrap: wrap;
       
    }
   

}

@media (max-width: 720px) {
    .rg-unified-hero {
        min-height: auto;
        display: block;
        padding: calc(var(--header-h) + 55px) 0 55px;
    }

    .rg-unified-hero__circle {
        position: relative;
        top: auto;
        right: auto;
        width: 205px;
        margin: 0 auto 45px;
        transform: none;
        animation: none;
    }

    .rg-unified-hero__content {
        width: 100%;
    }

    .rg-unified-hero h1 {
        margin-bottom: 30px;
        font-size: 50px;
    }

    .rg-unified-hero .inner-hero__foot {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .rg-unified-hero::before {
        width: 300px;
        height: 300px;
        right: -100px;
        top: 15%;
    }

    .rg-unified-hero::after {
        width: 280px;
        height: 280px;
    }

    .rg-unified-hero__bg {
        background-size: 46px 46px;
        opacity: .45;
    }

}

@media (max-width: 480px) {


    .rg-unified-hero__circle {
        width: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .rg-unified-hero__bg,
    .rg-unified-hero::before,
    .rg-unified-hero::after,
    .rg-unified-hero__circle,
    .rg-unified-hero__circle::before,
    .rg-unified-hero h1 em {
        animation: none !important;
    }
}

/* =========================================================
   GLOBAL RESPONSIVE HEADING CONSISTENCY
   Tablet: all H2 = 35px
   Mobile: all H2 = 32px across every page
========================================================= */

@media (max-width: 980px) {
    h2 {
        font-size: 35px !important;
        line-height: 1 !important;
    }
}

@media (max-width: 720px) {
    h2 {
        font-size: 32px !important;
        line-height: 1.05 !important;
    }
}

/* IMAGE PROTECTION — DOES NOT BREAK HOVER OR CLICK */
img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}