* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    outline: 0px solid #33333300;
}

*:hover {
    outline: 0px solid #c4c4c454;
}

a,
a:link,
a:visited,
.inlineLink {
    cursor: pointer;
    text-decoration: none;
    color: var(--color-primary);
}

a:hover,
a:link:hover,
a:visited:hover,
.inlineLink:hover {
    color: var(--color-secondary);
    text-shadow: none;
}

hr {
    border: none;
    border-top: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 2em auto;
    width: 100%;
}

#messageContainer {
    position: fixed;
    min-height: 3em;
    top: 0em;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0);
    color: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2000;
    border: 0px solid white;
    pointer-events: none;
}

#messageBox {
    opacity: 0;
    margin: 0 auto;
    font-size: 1em;
    font-family: "REGU";
    padding: 0.5em 2em;
    border-radius: 0.8em;
    color: rgb(255, 255, 255);
    background-color: #0b5817;
    border-bottom: 1px solid rgba(255, 255, 255, 0.233);
}

#megamenu a:link,
#megamenu a:visited {
    cursor: pointer;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75) !important;
}

#megamenu a:hover {
    color: white !important;
    text-shadow: none;
}

body {
    margin: 0;
    padding: 0em;
    font-size: 1em;
    font-family: "REGU", sans-serif;
    background-color: var(--color-page-background);
    overflow-x: hidden;
}

content {
    width: 100%;
    display: flex;
    position: absolute;
    justify-content: center;
}

.page-content {
    z-index: 2;
    padding: 0em;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    border: 0px solid #ddd;
    width: var(--page-width);
    /* background-color: var(--color-page-background); */
    margin-top: var(--header-height);
    margin-bottom: var(--footer-height);
    color: white;
}

.griditem {
    margin: 10px;
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc;
}

.griditem h2 {
    padding: 10px 0;
    text-align: left;
    border: 0px solid #ccc;
    margin: 0;
}

li {
    list-style-type: square;
    margin-left: 1em;
    padding-left: 1em;
}

.spacer-1em {
    width: 100%;
    height: 1em;
}

.spacer-2em {
    width: 100%;
    height: 2em;
}
.spacer-6em {
    width: 100%;
    height: 6em;
}

#blob1,
#blob2 {
    z-index: -10;
    width: 70vw;
    position: fixed;
    aspect-ratio: 1 / 1;
    border: 0px solid white;
    transform-origin: 60% 60%;
    mix-blend-mode: color-dodge;
    background-size: 100% 100%;
    background-position: center;
    animation: slowRotate 20s linear infinite;
    background-image: url("/_ASSETS/img/blob.png");
    will-change: transform;
}

#blob1 {
    opacity: 0.1;
    margin-left: -10vw;
    filter: sepia(1) saturate(800%) hue-rotate(80deg) brightness(80%);
}

#blob2 {
    z-index: -9;
    opacity: 0.07;
    margin-left: 30vw;
    animation: slowRotate 30s linear infinite reverse;
    filter: sepia(1) saturate(800%) brightness(80%) hue-rotate(140deg);
}

@keyframes slowRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.anchor {
    display: block;
    position: relative;
    height: 10px;
    border: 0px solid red;
    width: 100%;
    transform: translateY(calc(var(--header-height) * -1));
}
/*============================================
====               BUTTON                 ====
============================================== */

/* Global Container for the buttons */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem auto;
    padding: 1.25rem 0;
}

/* Global Button Style */
.btn-pill {
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-family: "LITE", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

/* Global Button Hover & Active States */
.btn-pill:hover {
    border: 1px solid var(--color-primary);
}

.btn-pill.is-active {
    background: var(--color-primary);
    color: white;
}

.btn-circle {
    width: 2.5em;
    aspect-ratio: 1/1;
    display: flex;
    font-size: 1em;
    color: white;
    cursor: pointer;
    border: none;
    align-items: center;
    justify-content: center;
    border-radius: 2000px;
    background-color: #0000004d;
    box-shadow: 0 0.2em 0.6em rgba(0, 0, 0, 0.8);
    border-top: 1px solid grey;
    background-image: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.164),
        rgba(0, 0, 0, 0.205)
    );
    transition: all 0.2s ease-in-out;
    user-select: none;
}

.btn-circle:hover {
    background-color: #6969694d;
}

.btn-circle:active {
    transform: scale(0.9);
    transition: all 0.1s ease-in-out;
}

.btn-circle.btn-lg {
    width: 3em;
    font-size: 1.6em;
}

/*============================================
====               BUTTON END             ====
============================================== */

/* Blog page */
#blog {
    padding: 16px;
}

#blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

#blog .blog-hero {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

#blog .blog-subcopy {
    text-align: right;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

#blog .blog-subcopy a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

#blog .blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem auto;
    padding: 1.25rem 0;
}

/* THESE WERE MADE GLOBAL, DIDN'T DELETE SO CAN BE PUT BACK IF NEEDED */

/* #blog .blog-filter {
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-family: 'LITE', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#blog .blog-filter:hover {
    border: 1px solid var(--color-primary);
}

#blog .blog-filter.is-active {
    background: var(--color-primary);
    color: white;
} */

/* END OF MADE GLOBAL */

#blog .blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 2rem auto 0;
}

#blog .blog-pagination__button {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-family: "LITE", sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease;
}

#blog .blog-pagination__button:hover {
    border-color: var(--color-primary);
}

#blog .blog-pagination__button.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

#blog .blog-pagination__button[data-kind="utility"] {
    border-color: transparent;
}

#blog .blog-pagination__button[data-kind="utility"]:hover {
    border-color: var(--color-primary);
}

#blog .blog-pagination[hidden] {
    display: none;
}

#blog .blog-pagination__button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

#blog .blog-pagination__icon {
    width: 1rem;
    height: 1rem;
    display: block;
    filter: brightness(0) invert(1);
}

#blog
    .blog-pagination__button[data-icon$="chevron-left.svg"]
    .blog-pagination__icon {
    transform: translateX(-0.1rem);
}

#blog .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#blog .blog-card {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(5, 8, 12, 0.9);
    border: 1px solid rgba(45, 46, 46, 0.9);
    /* box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(0, 0, 0, 0.25); */
}

#blog .blog-card:hover {
    border-color: var(--color-primary);
    box-shadow:
        0 22px 36px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 0, 0, 0.25);
}

#blog .blog-card[hidden] {
    display: none;
}

#blog .blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

#blog .blog-card__media {
    position: relative;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

#blog .blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

#blog .blog-card__title-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(
        180deg,
        rgba(5, 9, 12, 0) 0%,
        rgba(4, 7, 10, 0.92) 55%,
        rgba(4, 7, 10, 0.98) 100%
    );
    pointer-events: none;
}

#blog .blog-card__badge {
    top: 1em;
    left: 1em;
    border: none;
    color: #ffffff;
    font-size: 0.75rem;
    position: absolute;
    border-radius: 999px;
    padding: 0.2em 1em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--color-primary);
    text-shadow: 0 0.1em 0.1em rgba(0, 0, 0, 0.8);
}

#blog .blog-card__date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    margin: 0;
    padding: 0;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 0 12px rgba(0, 0, 0, 0.7),
        0 4px 16px rgba(0, 0, 0, 0.85),
        0 0 22px rgba(0, 0, 0, 0.9);
}

#blog .blog-card__title {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
    padding-bottom: 0.2rem;
}

#blog .blog-card__link:hover .blog-card__media img,
#blog .blog-card__link:focus-visible .blog-card__media img {
    transform: scale(1.05);
}

#blog .blog-card__link:hover .blog-card__title,
#blog .blog-card__link:focus-visible .blog-card__title {
    text-shadow: 0 18px 30px rgba(0, 0, 0, 0.85);
}

#blog .blog-card__body {
    display: none;
}

@media (max-width: 640px) {
    #blog .blog-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    #blog .blog-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    #blog .blog-subcopy {
        text-align: left;
    }
}

#footerRoot {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    position: fixed;
    padding-top: 1em;
    font-size: 0.9em;
    color: #949494;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #000000;
    height: var(--footer-height);
    clip-path: inset(100% 0% 0% 0%);
    background-image: radial-gradient(
        circle at 30% 50%,
        transparent,
        rgb(16, 36, 36)
    );
}

#footerRoot a {
    color: #bbb;
    text-decoration: none;
}

#footerRoot a:hover {
    text-decoration: underline;
}

#footerZones {
    width: 80%;
    height: 80%;
    z-index: 100;
    display: flex;
    font-size: 0.9em;
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 0px dotted purple;
    gap: 3em;
}

#footerZone1 {
    gap: 1em;
    width: 50%;
    height: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    border: 0px solid #a55;
}

.bcardGizmo {
    width: 80%;
    display: flex;
    color: #eee;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    aspect-ratio: 1000 / 466;
    background-color: transparent;
    box-sizing: border-box;
    transform: rotateY(var(--y));
}

@property --pos {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 50%;
}

@property --y {
    syntax: "<angle>";
    inherits: false;
    initial-value: 20deg;
}

@property --autoRot {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@keyframes autoRotate {
    0% {
        --autoRot: -5deg;
    }

    100% {
        --autoRot: 5deg;
    }
}

@keyframes cardShine {
    0% {
        --y: -30deg;
        --pos: 0%;
    }

    100% {
        --y: 30deg;
        --pos: 100%;
    }
}

.bcardFront {
    top: 8.8%;
    left: 7.2%;
    z-index: 2;
    width: 14%;
    height: 27.6%;
    position: absolute;
    border-radius: 0.8em;
    background-repeat: no-repeat;
    background-image: linear-gradient(
        70deg,
        transparent calc(var(--pos) - 10%),
        rgb(214, 214, 214) calc(var(--pos) + 20%),
        transparent calc(var(--pos) + 25%)
    );
    border: 0px dotted red;
    mix-blend-mode: color-dodge;
}

#bcardImage {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: 100% 100%;
    background-image: url(/_ASSETS/img/bcards/card-tuomo.png);
    filter: drop-shadow(0 0 40px rgba(0, 128, 0, 0.205));
}

#footerZone2 {
    gap: 0em;
    width: 50%;
    display: flex;
    font-size: 1.4em;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    border: 0px solid #559;
}

.arrows {
    font-size: 3em;
    color: #555;
}

.arrows:hover {
    cursor: pointer;
    color: #ffffff;
    text-shadow: rgb(43, 202, 43) 0px 0px 2em;
}

#footerblock1 {
    gap: 2em;
    width: 100%;
    padding: 1em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    border: 0px solid #a01b1bdc;
}

#companyInfo {
    text-align: left;
    align-items: flex-start;
    border: 0px dotted cyan;
    justify-content: flex-start;
    border: 0px solid #a01b1bdc;
    width: 50%;
}

#companyLinks {
    text-align: left;
    align-items: flex-start;
    border: 0px dotted cyan;
    justify-content: flex-start;
    border: 0cap solid #a01b1bdc;
    width: 50%;
}

#footerblock2 {
    width: 100%;
    padding: 1em;
    gap: 1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border: 0px solid #a01b1bdc;
}

#footerblock2 .social-item {
    display: inline-flex;
    margin-right: 0.5em;
    margin-left: 0;
    padding: 0;
}

#footerblock2 .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    background: currentColor;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 0px solid red;
}

.social-link.discord {
    -webkit-mask-image:
        linear-gradient(black, black), url("/_ASSETS/icons/discord.svg");
    mask-image:
        linear-gradient(black, black), url("/_ASSETS/icons/discord.svg");

    -webkit-mask-position: center, center;
    mask-position: center, center;

    -webkit-mask-repeat: no-repeat, no-repeat;
    mask-repeat: no-repeat, no-repeat;

    -webkit-mask-size: 100%, 80%;
    mask-size: 100%, 80%;

    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.social-link.github {
    -webkit-mask-image:
        linear-gradient(black, black), url("/_ASSETS/icons/github.svg");
    mask-image: linear-gradient(black, black), url("/_ASSETS/icons/github.svg");

    -webkit-mask-position: center, center;
    mask-position: center, center;

    -webkit-mask-repeat: no-repeat, no-repeat;
    mask-repeat: no-repeat, no-repeat;

    -webkit-mask-size: 100%, 80%;
    mask-size: 100%, 80%;

    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.social-link.linkedin {
    -webkit-mask-image:
        linear-gradient(black, black), url("/_ASSETS/icons/linkedin.svg");
    mask-image:
        linear-gradient(black, black), url("/_ASSETS/icons/linkedin.svg");

    -webkit-mask-position: center, center;
    mask-position: center, center;

    -webkit-mask-repeat: no-repeat, no-repeat;
    mask-repeat: no-repeat, no-repeat;

    -webkit-mask-size: 100%, 80%;
    mask-size: 100%, 80%;

    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.social-link.youtube {
    -webkit-mask-image:
        linear-gradient(black, black), url("/_ASSETS/icons/youtube.svg");
    mask-image:
        linear-gradient(black, black), url("/_ASSETS/icons/youtube.svg");

    -webkit-mask-position: center, center;
    mask-position: center, center;

    -webkit-mask-repeat: no-repeat, no-repeat;
    mask-repeat: no-repeat, no-repeat;

    -webkit-mask-size: 100%, 80%;
    mask-size: 100%, 80%;

    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.social-link.contact {
    -webkit-mask-image:
        linear-gradient(black, black), url("/_ASSETS/icons/mail.svg");
    mask-image: linear-gradient(black, black), url("/_ASSETS/icons/mail.svg");

    -webkit-mask-position: center, center;
    mask-position: center, center;

    -webkit-mask-repeat: no-repeat, no-repeat;
    mask-repeat: no-repeat, no-repeat;

    -webkit-mask-size: 100%, 80%;
    mask-size: 100%, 80%;

    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

#footerblock2 .social-link:hover {
    color: white;
}

.social-list {
    border: 0px solid red;
    padding: 0;
    margin: 0;
}

.social-list li {
    list-style: none;
}

.autorotate {
    position: relative;
    perspective: 800px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid red;
    animation: autoRotate 10s ease-in-out infinite alternate;
    transform: rotateZ(var(--autoRot));
}

.footlink {
    display: block;
    padding-left: 1.2em;
    margin-bottom: 0.6em;
    text-decoration: none;
    color: rgb(182, 182, 182);
    transition: all 0.3s ease;
}

.footlink:hover {
    color: rgb(13, 202, 13) !important;
    text-decoration: none !important;
    /* padding-left: 2em; */
}

.footlink:hover::before {
    transform: translate(-0.8em, -0.3em);
    transition: all 0.3s ease;
    color: rgb(196, 146, 8);
}

.footlink::before {
    content: "⟩";
    position: absolute;
    transform-origin: left;
    font-size: 1.2em;
    color: green;
    transform: translate(-1em, -0.3em);
    transition: all 0.3s ease;
}

.footbutton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    background-color: green;
    color: rgb(182, 182, 182);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin: 1em 0;
    border-radius: 1000px;
    line-height: 0.8;
    font-family: "BOLD";
    white-space: nowrap;
    text-shadow: 0 0 0.3em rgba(0, 0, 0, 0.541);
}

.footbutton:hover {
    background-color: rgb(11, 155, 11) !important;
    text-decoration: none !important;
    box-shadow: 0 0 1em rgba(0, 255, 0, 0.582);
}

.breadcrumbs {
    display: flex;
    font-size: 0.9em;
    margin-bottom: 1em;
    align-items: center;
    border: 0px solid grey;
}

.breadcrumbs a:link,
.breadcrumbs a:visited,
.breadcrumbs * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: 0px solid #333333ff;
    color: #bbb;
}

.breadcrumbs a::after {
    content: "▸";
    font-size: 0.8em;
    margin: 0 0.4em;
    color: #bbbbbb83;
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs.dark *,
.breadcrumbs.dark a:visited,
.breadcrumbs.dark a:link {
    color: rgba(0, 0, 0, 0.5) !important;
    opacity: 1;
}

.faqitem {
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 0.5em;
    border: 1px solid #ffffff28;
    border-left: 2px solid #08ac087a;
    margin-bottom: 1em;
}

.faqitem:hover {
    background-color: #ffffff0a;
}

.faqitem h2 {
    margin: 0 0 0.5em 0;
    font-size: 1.2em;
    font-weight: normal;
}

.faqitem p {
    color: rgba(255, 255, 255, 0.637);
    margin-bottom: 0.7em;
    padding-left: 3em;
}

.faqitem li {
    margin-left: 4em;
    padding-left: 0.2em;
}

.linker {
    padding: 0 0.2em;
    cursor: pointer;
    visibility: hidden;
}

.readmore {
    gap: 3em;
    display: flex;
    margin: 2em 0;
    padding-top: 1em;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.readmore h4 {
    margin: 0;
    padding: 0;
    font-size: 1em;
    color: white;
}

.readmore li {
    font-family: "REGU";
    margin: 0 0 0.5em 0;
    padding: 0;
    padding-left: 0.5em;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.63);
    list-style-type: "▸";
}

.video-container {
    width: 100%;
    padding: 1em 2em;
    margin: 2em 0;
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 1em;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #00000041;
    border-right: 1px solid rgba(255, 255, 255, 0.233);
    border-bottom: 1px solid rgba(255, 255, 255, 0.233);
    box-shadow: inset 0 0 2em rgba(0, 0, 0, 0.5);
}

.timecodes {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.2em 0;
}

.timecodes span {
    cursor: pointer;
}

.timecodes span:hover {
    color: var(--color-secondary);
}

.timecodes .divider {
    margin: 0 0.5em;
    color: var(--color-primary);
}

.video-parent {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1em;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.233);
    border-left: 1px solid rgba(255, 255, 255, 0.233);
    box-shadow: 0 0 2em rgba(0, 0, 0, 0.7);
}

.center {
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.larger {
    font-size: 1.4em;
}

#home-industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
}

#home-industries .griditem {
    margin: 0;
    display: flex;
    padding: 1.5em;
    text-align: left;
    border-radius: 0.6em;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #cccccc2c;
    background-color: hsla(0, 0%, 0%, 0.35);
    justify-content: space-between;
    backdrop-filter: blur(10px);
    box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.336);
    border-left-color: var(--color-primary);
    transition: background-color 0.2s ease-in-out;
}

#home-industries .griditem:hover {
    background-color: hsla(0, 0%, 22%, 0.089);
    transition: background-color 0.2s ease-in-out;
}

#home-industries .griditem h3 {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 1.4em;
    margin-bottom: 1em;
    border: 0px solid #ccc;
    color: var(--color-primary);
}

#home-industries .griditem p {
    margin: 0;
    padding: 0;
    font-size: 0.8em;
    line-height: 1.7em;
    margin-bottom: 1em;
    color: rgba(255, 255, 255, 0.8);
}

.grow {
    min-height: 1em;
    flex-grow: 1;
}

.youtubeHero {
    width: 100%;
    aspect-ratio: 16/9;
    pointer-events: none;
    border-radius: 0.7em;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.233);
    /* box-shadow: 0 0.2em 0.6em rgba(0, 0, 0, 0.8); */
}

.parent3D {
    perspective: 1000px;
}

.card3D {
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 0.8em;
    will-change: transform;
    transform: rotateY(0deg) translateZ(0);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.3, 1);
}

.hover3D {
    transform: rotateY(-180deg) translateZ(-100px);
    transition: transform 0.8s cubic-bezier(0.43, 0.05, 0.3, 1);
}

.cardContent {
    width: 78%;
    height: 80%;
    z-index: 20;
    position: absolute;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform: translateZ(4em);
    text-align: center;
    border: 0px solid yellow;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.upperBox {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 0px solid red;
    transform-style: preserve-3d;
    transform-origin: center;
}

.cardContent h3 {
    transform: translateZ(1em) !important;
    backface-visibility: hidden;
    color: white;
    margin-bottom: 0em;
    border: 0px solid red;
    padding: 0.5em 0;
    font-size: 0.9em;
}

.cardContent img {
    width: 80%;
    max-width: 200px;
    height: auto;
    border-radius: 0.5em;
    backface-visibility: hidden;
    border: 0px solid #ffffff28;
    transform: translateZ(3em) !important;
}

.cardFrontBackground,
.cardBackBackground {
    inset: 0;
    position: absolute;
    border-radius: 1em;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.2);
}

.cardBackBackground {
    background-color: hsl(0, 0%, 95%);
    backdrop-filter: blur(10px);
    border-bottom: 0.5em solid var(--color-primary);
}

.cardBack,
.cardFront {
    width: 100%;
    height: 100%;
    padding: 2em;
    position: absolute;
    border-radius: 0.8em;
    transform: rotateY(0deg);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-top: 1px solid rgba(255, 255, 255, 0.233);
}

.cardFront .cardContent {
    flex-direction: column;
    border: 0px solid green;
    justify-content: space-between;
}

.cardBack .cardContent {
    border: 0px solid blue;
    justify-content: flex-start;
    align-items: flex-start;
}

.cardBack {
    transform: rotateY(180deg);
    box-shadow: 0 0.5em 4em rgba(10, 189, 25, 0.4);
}

.cardBack h3,
.cardBack p {
    font-size: 0.8em;
    font-family: "XTRA";
    color: rgba(0, 0, 0);
    text-align: left;
    z-index: 10;
    padding: 1em 0;
}

.cardBack h3 {
    padding: 0;
    margin-bottom: 0.7em;
    border: 0px solid #000;
}

.cardBack p {
    font-family: "REGU";
    font-size: 0.8em;
    line-height: 1.4em;
    margin-bottom: 0.7em;
    padding: 0;
}

.cardBack p a {
    color: green;
}

.cardBack p a:hover {
    color: black;
    text-decoration: underline;
}

.cardFront::after {
    content: "▸";
    position: absolute;
    top: 0.2em;
    right: 0.4em;
    font-size: 1.8em;
    color: var(--color-primary);
    opacity: 0.6;
}

.container {
    width: 100%;
    margin: 2rem auto;
    display: block;
}

.product-main-topic {
    display: flex;
    font-size: 2rem;
    justify-content: center;
}

.product-list {
    gap: 1em;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 0px solid rgba(10, 49, 221, 0.562);
}

.product-card {
    display: flex;
    flex-direction: column;
    border: 0px dotted red;
    justify-content: flex-start;
    font-size: clamp(0.8em, 1.2vw, 1.2em);
}

.product-card > * {
    border: 0px solid blue;
}

.product-card > .product-image {
    flex: 0 0 0;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.0);
}

.product-card img {
    width: 80%;
    height: auto;
    /* object-fit: contain; */
}

.product-card-body {
    flex: 1 1 0;
    margin: 1em 0;
    display: flex;
    font-size: 0.95em;
    padding: 0.5em 1em;
    flex-direction: column;
    justify-content: space-between;
    border-left: 2px solid rgba(51, 182, 56, 0.4);
}

.product-card-footer {
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: flex-end;
    flex-grow: 1;
}



.product-card h3 {
    font-size: clamp(1.2em, 2.2vw, 1.8em);
    margin: 0.5em 0 0.3em 0;
    line-height: 1.2;
}

.product-card h4 {
    font-size: clamp(0.5em, 1vw, 2.2em);
    color: rgba(255, 255, 255, 0.637);
    padding: 0;
    margin: 0 0 0.5em 0;
    line-height: 1.3;
}




.product-btn {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    padding: 0.6em 1.5em;
    color: white;
    border-radius: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-size: large;
    text-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.5);
    transition:
        padding 0.3s ease,
        box-shadow 0.3s ease;
    margin-right: 2em;
}

.btn-arrow {
    opacity: 0;
    font-size: large;
    transform: translateX(-15px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.product-btn:hover {
    padding-right: 2.5em;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(10px);
}

.btn-bg-blue {
    background-image: linear-gradient(0deg, #2b4a80, #375ea3);
}

.btn-bg-green {
    background-image: linear-gradient(0deg, #3d802c, #54af3c 75%);
}

#text-xs {
    color: inherit;
    font-size: 0.7rem;
    text-underline-offset: 0.1em;
    text-underline-position: under;
    text-decoration: underline;
    text-decoration-thickness: 0.1em;
}

#text-xs:hover {
    text-decoration: none;
}

/* pricing table */
.pricing-table {
    display: grid;
    gap: 0;
    border-radius: 0.5em;
    overflow: hidden;
    box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.4);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 1em 2em;
}

.pricing-row:nth-child(even) {
    background: rgba(42, 50, 59, 0.6);
}

.pricing-row:nth-child(odd) {
    background: rgba(31, 38, 46, 0.6);
}

.pricing-info {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-info .green {
    color: var(--color-primary);
}



.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: start;
    padding: 2em;
    border-radius: 1em;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.233);
}

/* LEFT HEADING */
.comparison-heading h2 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
}

.comparison-heading p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}



/* TABLE */
.comparison-table {
    display: grid;
    gap: 0;
    border-radius: 0.5em;
    overflow: hidden;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
}

.sub-table-header,
.table-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 1em;
    /* font-weight: 600; */
}

.table-header {
    z-index: 3;
    position: sticky;
    top: 0rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.233);
}

.table-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1em;
    border-radius: 0 0 0.5em 0.5em;
}

.table-footer div,
.table-header div {
    text-align: center;
}
.table-footer div:first-child,
.table-header div:first-child {
    text-align: left;
    text-transform: uppercase;
}

.table-footer__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2em;
}

.table-footer__link {
    color: var(--color-primary);
    text-decoration: none;
    font-family: "BOLD";
    font-size: 0.85em;
    transition: color 0.2s;
}

.table-footer__link:hover {
    color: color-mix(in oklab, var(--color-primary), white 25%);
}

.table-footer__price {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7em;
    font-family: "LITE";
}

.table-row {
    padding: 1em 2em;
}

.table-row:nth-child(even) {
    background: rgba(42, 50, 59, 0.6);
}

.table-row:nth-child(odd) {
    background: rgba(31, 38, 46, 0.6);
}

.table-row div {
    text-align: center;
}

.table-row div:first-child {
    display: flex;
    text-align: left;
    justify-content: space-between;
}

/* ICON COLORS */
.check {
    color: #4caf50;
    font-size: 1.2rem;
}

.cross {
    color: rgba(255, 59, 59, 0.4);
    font-size: 1.2rem;
}

.info-icon {
    position: relative;
    cursor: help;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.info-icon:hover {
    opacity: 1;
}

.info-icon[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5em 0.8em;
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.4;
    white-space: normal;
    width: 200px;
    color: white;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 0.4em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
}

#promo {
    z-index: -1;
    width: 100%;
    padding: 0;
    height: 100px;
    display: flex;
    color: white;
    border-radius: 1em;
    text-align: center;
    align-items: flex-start;
    justify-content: center;
    background-color: hsla(0, 0%, 0%, 0.1);
    box-shadow: inset 0 -0.5em 2em rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.233);
    position: relative;
}

#promoContent {
    display: flex;
    padding-left: 2em;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border: 0px solid rgb(0, 89, 255) !important;
    width: 100%;
}

@keyframes slides {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos {
    left: 0;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
    position: absolute;
    max-width: 100%;
    border: 0px dotted rgb(43, 185, 0);
    mask-image: linear-gradient(
        to right,
        transparent,
        black 200px,
        black calc(100% - 200px),
        transparent
    );
}

.logo_items {
    display: inline-block;
    animation: 80s slides infinite linear;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img {
    height: 100px;
    opacity: 0.7;
    transition: opacity 0.3s;
    cursor: pointer;
}

.logo_items img:hover {
    opacity: 1;
}

.oneliner {
    width: fit-content;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5em 3em;
    border-radius: 5em;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.233);
}

.news {
    min-width: 50%; 
    padding: 0.8em 1.2em;
    background-color: hsla(216, 0%, 10%, 0);
    box-shadow: inset 0 0 2em rgba(0, 0, 0, 0.8);
    background-size: 100% 100%, 200% 100%;
    background-position: 0 0, 0 0;
    background-repeat: no-repeat, repeat;
}
.oneliner.news b {
    background-color: rgb(14, 112, 5);
    padding: 0.2em 0.8em;
    border-radius: 1000px;
    margin-right: 0.8em;
    border-color: rgba(255, 255, 255, 0.329);
    border-style: solid;
    border-width: 1px 0 0 1px;
}

.oneliner.warn b {
    color: white;
    margin: 0 0.4em;
    padding: 0.1em 0.8em;
    border-radius: 1000px;
    background-color: inherit;
    box-shadow: 0 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
}


.warn {
    --color1: rgba(255, 0, 0, 0.2);
    --color2: rgba(0, 0, 0, 0.2);
    min-width: 50%; 
    padding: 0.8em 2em;
    background-color: rgb(131, 0, 0);
    background-image:
        linear-gradient(
            180deg,
            rgba(219, 0, 0, 0.185) 48%,
            rgba(0, 0, 0, 0.199) 58%
        ),
        repeating-linear-gradient(
            -45deg,
            var(--color1),
            var(--color1) 10px,
            var(--color2) 10px,
            var(--color2) 20px
        )
        ;
    box-shadow: inset 0 0 2em rgba(0, 0, 0, 0.8);
    background-size: 100% 100%, 200% 100%;
    background-position: 0 0, 0 0;
    background-repeat: no-repeat, repeat;
    animation: pulseColor 30s linear infinite;
}

.oneliner.warn b {
    color: white;
    margin: 0 0.4em;
    padding: 0.1em 0.8em;
    border-radius: 1000px;
    background-color: inherit;
    box-shadow: 0 0 0.2em 0.5em rgba(0, 0, 0, 0.3);
}

@keyframes pulseColor {
    0% {
        background-position: 0 0, 100% 0;
    }
    100% {
        background-position: 0 0, -100% 0;
    }
}


.glow-bar {
    width: 10px;
    flex-shrink: 0;
    border-radius: 5em;
    background-color: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.233);
    box-shadow:
        3px 0 12px rgba(51, 182, 56, 0.4),
        6px 0 25px rgba(51, 182, 56, 0.15),
        inset 0 0 8px rgba(51, 182, 56, 0.5);
    margin-top: 1em;
}

/* Feature Section */
.feature-section {
    --accent-color: var(--color-primary);
    text-align: center;
    padding: 3em 0;
    overflow: hidden;
    border-radius: 1em;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-section-text {
    max-width: 90%;
    margin: 0 auto 2em;
}

.feature-section-eyebrow {
    font-size: 1em;
    letter-spacing: 0.0em;
    color: var(--accent-color);
    margin-bottom: 0.8em;
}

.feature-section h2 > b {
    color: var(--accent-color);
}

.feature-section .arrowLink {
    color: var(--accent-color);
}

.feature-section h2 {
    margin: 0 0 0.6em;
}

.feature-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 1em;
}

.feature-section-carousel {
    --slide-height: 400px;
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 80px,
        black calc(100% - 80px),
        transparent
    );
}

.feature-section-track {
    display: flex;
    gap: 3em;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 50%;
    scrollbar-width: none;
    position: relative;
}

.feature-section-track::-webkit-scrollbar {
    display: none;
}

.feature-section-slide {
    height: calc(var(--slide-height) * 1);
    flex-shrink: 0;
    text-align: left;
    aspect-ratio: 1/2;
    scroll-snap-align: center;
    /* background-color: red; */
}

.feature-section-slide img {
    height: 70%;
    aspect-ratio: 1/1;
    display: block;
    border-radius: 0.5em;
    border: 0px solid rgba(255, 255, 255, 0.1);
    opacity: 0.85;
    transition: opacity 0.3s;
    margin: 0 auto;
    object-fit: cover;
    box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.5);
    /* background-color: red; */
}

.feature-section-slide:hover img {
    opacity: 1;
}

.feature-section-slide h4 {
    margin: 0.6em 0 0.15em;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
}

.feature-section-slide span {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
}

.feature-section-controls {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 1.2em;
}

/* Dynamic Product Image */
.dpi {
    position: relative;
    border-radius: 1em;
    overflow: hidden;
    min-height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.dpi-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.4s ease;
}

.dpi-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 40%,
        transparent 70%
    );
}

.dpi-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 450px;
    padding: 2em;
}

.dpi-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    max-width: 380px;
}

.dpi-controls {
    display: flex;
    gap: 0.6em;
}

.dpi-items {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.dpi-item {
    display: flex;
    align-items: center;
    gap: 0.8em;
    padding: 0.6em 1em;
    border-radius: 0.6em;
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.dpi-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.dpi-item-icon {
    width: 1.6em;
    height: 1.6em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.25s;
}

.dpi-item-text h4 {
    margin: 0;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.85);
}

.dpi-item-text p {
    margin: 0.3em 0 0;
    font-size: 0.8em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        margin 0.35s ease;
}

.dpi-active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.dpi-active .dpi-item-icon {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.dpi-active .dpi-item-text p {
    max-height: 6em;
    margin-top: 0.3em;
}

/* Product Story */
.product-story {
    padding: 2em 0;
}

.product-story-section {
    padding: 3em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-story-text {
    max-width: 700px;
    margin-bottom: 2em;
}

.product-story-text h2 {
    margin: 0 0 0.5em;
}

.product-story-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    font-size: 1em;
}

.product-story-media {
    width: 50%;
    border-radius: 0.6em;
    overflow: hidden;
}

.product-story-media img,
.product-story-media video {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .product-story-media {
        width: 90%;
    }
}

.todo {
    z-index: 500;
    position: fixed;
    bottom: 2em;
    left: 2em;
    font-size: 1em;
    max-width: 300px;
    width: fit-content;
    padding: 1em;
    padding-top: 3em;
    border-radius: 0em;
    color: rgb(0, 0, 0);
    font-family: monospace;
    transform: rotate(-1deg);
    background-color: rgb(244, 255, 149);
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.8);
}

.todo::before {
    left: 1em;
    top: 0.5em;
    content: "TODO";
    position: absolute;
    font-size: 1.2em;
    font-weight: bold;
    color: rgb(0, 4, 255);
}

.todo h3 {
    margin: 0;
    padding: 0;
    font-size: 1.4em;
    margin-bottom: 1em;
    font-weight: normal;
    font-family: monospace;
}

.todo li.wait {
    list-style-type: "🟥";
    text-decoration: none;
}

.todo li.done {
    list-style-type: "✅";
    text-decoration: line-through;
}

.partner-logos {
    gap: 1em;
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1em;
}

.partner-logos img {
    height: 5em;
    aspect-ratio: 2/1;
    border: 0px solid rgba(0, 0, 0, 0.233);
    transition: all 0.5s ease;
    filter: brightness(1) saturate(0.5);
}

.partner-logos div {
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    color: grey;
    padding: 1em;
}

.partner-logos img:hover {
    filter: brightness(1.2) saturate(1);
    transition: all 0.5s ease;
}
/* About page */
#about {
    padding: 16px;
}

#about .about-hero {
    max-width: 960px;
    margin: 0 auto 2rem;
    text-align: center;
}

#about h1 {
    font-family: "BOLD", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    margin-bottom: 0.2em;
}

#about .about-strapline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

#about .about-section {
    margin: 3rem auto;
    padding: 2.5rem;
    border-radius: 18px;
    background: rgba(14, 20, 22, 0.6);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

#about .about-section--light {
    background: rgba(255, 255, 255, 0.04);
}

#about .about-section h2 {
    margin-top: 0;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary);
}

#about .about-section p {
    line-height: 1.8;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

#about .section-heading {
    position: relative;
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fefefe;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

#about .section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-primary),
        rgba(255, 255, 255, 0)
    );
}

#about .section-heading + p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
}

#about .about-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

#about .about-highlight-card {
    padding: 1.4rem;
    border-radius: 14px;
    border: 1px solid rgba(112, 255, 163, 0.2);
    background: rgba(255, 255, 255, 0.03);
    text-align: left;
}

#about .about-highlight-card h3 {
    margin-top: 0;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

#about .readmore {
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(17, 21, 24, 0.5);
}

#about .readmore h4 {
    margin-top: 0;
    font-size: 1.1em;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.2em; */
    color: rgba(255, 255, 255, 0.8);
}

#about .readmore li {
    margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
    #about .about-section {
        padding: 1.5rem;
    }

    #about .about-highlight {
        grid-template-columns: minmax(0, 1fr);
    }
}

#about .team-section {
    margin-top: 2.5rem;
    padding-left: 0;
    padding-right: 0;
}

#about .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    justify-items: stretch;
}

#about .team-card {
    position: relative;
    background-color: hsla(0, 0%, 0%, 0.35);
    border-radius: 0.6em;
    border: 1px solid #cccccc2c;
    border-left: 2px solid var(--color-primary);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.336);
    backdrop-filter: blur(10px);
    min-height: 100%;
    overflow: hidden;
}

#about .team-card__accent {
    display: none;
}

#about .team-card h3 {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    font-weight: bold;
    font-family: "BOLD";
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

#about .team-card__media {
    margin: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    position: relative;
    mask-image: radial-gradient(
        circle,
        #fff 68%,
        rgba(255, 255, 255, 0.05) 100%
    );
    mask-mode: luminance;
    transition: transform 0.4s ease;
}

#about .team-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.1);
}

#about .team-card:hover {
    background-color: hsla(0, 0%, 22%, 0.089);
    transition: background-color 0.2s ease-in-out;
}

#about .team-card:hover .team-card__media {
    transform: scale(0.92);
}

#about .team-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

#about .team-card__head {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

#about .team-card__role {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-primary, #33b638);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.25em * 2);
}

#about .team-card__bio {
    margin: 0;
    line-height: 1.45;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.45em * 3);
}

#about .team-card__contact {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

#about .team-card__contact-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    border: none;
    background: transparent;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

#about .team-card__contact-btn img {
    width: 18px;
    height: 18px;
    display: block;
    filter: brightness(0) invert(1);
}

#about .team-card__contact-btn:hover,
#about .team-card__contact-btn:focus-visible {
    color: #70ffa3;
    background: rgba(112, 255, 163, 0.12);
    transform: scale(1.05);
}

#about .team-card__contact-btn[href=""],
#about .team-card__contact-btn[href="mailto:"],
#about .team-card__contact-btn[href="#"] {
    display: none;
}

#about .logo-carousel {
    margin-top: 32px;
}

#about .logo-carousel__track {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    padding: 40px;
    min-height: 160px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
}

#recommendations li.ok a {
    font-weight: bolder;
    text-shadow: 0 0 0.3em rgba(0, 255, 0, 0.582);
}

#recommendations li.ok {
    color: white;
}

/* ═══════════════════════════════════════════════
   STORE
   ═══════════════════════════════════════════════ */

#store .start-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#store .start-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#store .start-left h1 {
    margin: 0;
    letter-spacing: 0.02em;
}

#store .start-left small {
    margin: 0;
    font-size: clamp(1rem, 2vw, 2.2rem);
    font-family: "LITE";
    vertical-align: super;
}

#store .start-left b {
    margin: 0;
    letter-spacing: 0.02em;
    font-family: "XTRA";
    color: var(--color-primary);
}

#store .start-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#store .start-right .links-container {
    display: flex;
    gap: 0.5rem;
}

#store .start-right .section-hyperlink {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.93rem, 2vw, 1rem);
    font-family: "BOLD";
    text-decoration: none;
}

#store .start-right .section-hyperlink:hover {
    color: var(--color-primary);
}

#store .start-right .section-hyperlink:not(:last-child)::after {
    content: " | ";
    color: var(--color-primary);
    font-weight: 400;
}

#store .start-right p {
    margin: 0;
    font-size: 0.9rem;
    font-family: "LITE";
}

#store .store-featured {
    width: min(90%, 1100px);
    margin: clamp(1.2rem, 2vw, 2rem) auto clamp(1rem, 2vw, 1.6rem);
    padding: clamp(1rem, 2vw, 1.5rem);
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    display: block;
}

#store .store-featured__header {
    /* z-index: 1; */
    margin: 0;
    padding: 0;
    max-width: min(34rem, 100%);
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
}

#store .store-featured__kicker {
    margin: 0 0 0.35rem;
    /* padding: 0.5em; */
    padding-bottom: 1em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    font-size: 0.8em;
    letter-spacing: 0.15em;
}

#store .store-featured__header h2 {
    margin: 0;
    font-family: "XTRA";
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

#store .store-featured__copy {
    margin: 0.45rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: "LITE";
    font-size: clamp(0.88rem, 1.4vw, 0.96rem);
}

#store .store-sliderContainer {
    position: relative;
    width: 100%;
    padding: 2rem 2.5em 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1em;
    background-color: hsla(0, 0%, 0%, 0.2);
    box-shadow: inset 0 0 2em rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.233);
    border-right: 1px solid rgba(255, 255, 255, 0.233);
}

#store .store-slider {
    width: 100%;
    max-width: 750px;
    border: 0px solid rgba(255, 255, 255, 0.233);
    border-radius: 0.6em 0.6em 0 0;
}

#store .store-wrapper {
    /* z-index: 1; */
    overflow: hidden;
    position: relative;
    border-radius: 0.6em 0.6em 0 0;
}

#store .store-featured__slides {
    display: flex;
    width: 100%;
    transition: transform 0.35s ease;
    border-radius: 0.6em 0.6em 0 0;
}

#store .store-featured__slide {
    flex: 0 0 100%;
    border-radius: 0.6em 0.6em 0 0;
}

#store .store-featured__card {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

#store .store-featured__card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.233);
    border-radius: 0.6em;
}

#store .store-featured__card-body {
    position: static;
    width: 100%;
    padding: 1.1em 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 0;
    text-align: center;
    border-radius: 0;
    border: none;
    background: transparent;
    justify-content: space-between;
    box-shadow: none;
    overflow: hidden;
}

#store .store-featured__tag {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-family: "BOLD";
}

#store .store-featured__card h3 {
    margin: 0;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-family: "BOLD";
    text-align: center;
    color: var(--color-primary);
    text-shadow: none;
}

#store .store-featured__card p {
    margin: 0;
    text-align: center;
    text-shadow: none;
    line-height: 1.4;
}

#store .store-featured__card-body p:last-of-type {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0;
    font-family: "LITE";
}

#store .store-featured__cta {
    width: fit-content;
    display: inline-flex;
    text-decoration: none;
    margin-top: 0.4rem;
    align-self: center;
    font-size: 0.85rem;
    font-family: "BOLD";
    letter-spacing: 0.05em;
    color: var(--color-primary);
    cursor: pointer;
    transition: color 0.2s;
}

#store .store-featured__cta:hover {
    color: color-mix(in oklab, var(--color-primary), white 25%);
}

#store .store-controls {
    display: flex;
    gap: 0.6em;
    justify-content: center;
    margin-top: 0.8em;
    user-select: none;
}

#store .store-controls .btn-circle {
    width: 2em;
    font-size: 1em;
}

#store .store-filters {
    display: flex;
    align-items: wrap;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.2em, 2vw, 1.2em);
    margin-bottom: 2rem;
}

#store .btn-pill {
    font-family: "REGU";
}

/* USES GLOBAL BUTTON STYLE NOW, LEFT OUT SO CAN BE PLACED BACK */

/* #store .store-filter-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: "BOLD";
    font-size: clamp(0.85rem, 2.5vw, 1.05rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.45em clamp(0.7em, 2vw, 1.2em);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#store .store-filter-btn:hover {
    color: var(--color-primary)
}

#store .store-filter-btn.active {
    background-color: var(--color-primary);
    color: #fff;
} */

/* END OF GLOBAL BUTTON CHANGE */

#store .store-section {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    padding: 3vh clamp(1rem, 5.5vw, 5rem);
}

#store .store-card--highlight {
    overflow: hidden;
}

#store .store-card--highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(51, 182, 56, 0.15),
        rgba(255, 255, 255, 0.2),
        rgba(51, 182, 56, 0.15),
        transparent
    );
    animation: storeCardShine 1.5s ease-in-out;
    pointer-events: none;
    z-index: 10;
}

@keyframes storeCardShine {
    0%   { left: -100%; }
    100% { left: 200%; }
}

#store .store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(1em, 2.5vw, 2em);
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    justify-items: stretch;
}

#store .store-card {
    color: black;
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 20px)
        clamp(14px, 2vw, 20px);
    display: flex;
    flex-direction: column;
    gap: 1em;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    min-height: 100%;
    overflow: hidden;
    border-radius: clamp(6px, 1.5vw, 3%);
}

#store .store-card h2 {
    margin: 0;
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    letter-spacing: 0.01em;
    font-weight: bold;
    font-family: "BOLD";
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#store .store-card__media {
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    position: relative;
}

#store .store-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Product carousel ── */

#store .store-carousel {
    position: relative;
}

#store .store-carousel__track {
    display: flex;
    transition: transform 0.35s ease;
}

#store .store-carousel__slide {
    width: 100%;
    flex: 0 0 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#store .store-carousel__prev,
#store .store-carousel__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5em;
    height: 2.5em;
    border: none;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
}

#store .store-carousel:hover .store-carousel__prev,
#store .store-carousel:hover .store-carousel__next {
    opacity: 1;
}

#store .store-carousel__prev {
    left: 0.4em;
}

#store .Carousel_prevIcon,
#store .Carousel_nextIcon{
    stroke: grey;
    scale: 1.5;
}

#store .Carousel_prevIcon{
    scale: -1.5;
}

#store .store-carousel__next {
    right: 0.4em;
}

#store .store-carousel__dots {
    position: absolute;
    bottom: 0.5em;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35em;
    z-index: 2;
}

#store .store-carousel__dot {
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

#store .store-carousel__dot.is-active {
    background: #fff;
    transform: scale(1.25);
}

/* Hide controls when single image */
#store .store-carousel[data-single] .store-carousel__prev,
#store .store-carousel[data-single] .store-carousel__next,
#store .store-carousel[data-single] .store-carousel__dots {
    display: none;
}

/* ── End product carousel ── */

#store .store-card__body {
    display: flex;
    flex-direction: column;
    gap: 1em;
    flex: 1;
}

#store .store-card__head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.2rem;
    flex-wrap: wrap;
}

#store .store-card__description {
    margin: 0;
    font-size: clamp(0.9rem, 3vw, 1rem);
    min-height: calc(1.8em * 3);
    margin-bottom: 1em;
    font-family: "REGU";
    white-space: pre-line;
}

#store .store-card__extra {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    align-items: center;
}

#store .store-card__extra .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

#store .store-card__extra .nav-link_arrow {
    width: 0.5em;
}

#store .store-card__extra .nav-link .text-lightgray {
    font-size: 0.8rem;
    color: rgb(0, 0, 0, 0.8);
}

#store .store-card__extra .arrow-item:hover .arrow {
    transform: translateX(5px);
    opacity: 0.8;
}

#store .store-card__extra .purchase-button {
    margin-left: auto;
}

#store .store-card__extra .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6em 2.5em;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.3em;
    font-family: "BOLD";
    font-size: clamp(0.8em, 2vw, 0.9em);
    text-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.4);
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

#store .store-card__extra .btn:hover {
    background: color-mix(in oklab, var(--color-primary), white 15%);
    border-bottom-color: white;
    box-shadow: 0 0.2em 0.8em rgba(0, 0, 0, 0.5);
}

.product-intro {
    display: flex;
    flex-direction: row;
    gap: 2em;
}

.product-description {
    flex-basis: 50%;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1em;
}

.product-description b {
    font-size: 1.2em;
    line-height: 1.1;
}

.product-description  li {
    padding-left: 0.5em;
    margin-bottom: 0.2em;
}
.product-description  li::marker {
    color: var(--color-primary);
}


.product-image {
    flex-basis: 50%;
    position: relative;
}

.product-image * {
    border-radius: 0.7em;
    max-width: 100%;
    height: auto;
}

.product-imagegrid {
    /* flex-basis: 50%; */
    /* position: relative; */
}

.product-imagegrid * {
    border-radius: 0.7em;
    /* max-width: 100%; */
    height: auto;
}


/* ═══════════════════════════════════════════════
   STORE ENDS
   ═══════════════════════════════════════════════ */

    #spinner-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }
    #spinner-overlay.active {
        display: flex;
    }
    .spinner {
        width: 60px;
        height: 60px;
        border: 5px solid rgba(255,255,255,0.2);
        border-top-color: var(--color-primary, #33b638);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }
    @keyframes spin {
        to { transform: rotate(360deg); }
    }



    .sidebyside {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
    }

    .sidebyside h2 {
        padding: 0;
        width: 100%;
        display: block;
        padding: 0.1em 0;
    }

    .sidebyside .columns {
        gap: 2em;
        padding: 0;
        display: flex;
        font-size: 1.0em;
        flex-direction: row;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .sidebyside .columns-reverse {
        gap: 2em;
        padding: 0;
        display: flex;
        font-size: 1.0em;
        flex-direction: row-reverse;
        color: rgba(255, 255, 255, 0.8);
    }

    .sidebyside img {
        /* width: 40%; */
        height: auto;
        display: block;
        margin: 1em;
        border-radius: 1em;
        object-fit: cover;
    }

    .sidebyside  .columns .product-image,
    .sidebyside  .columns-reverse .product-image {
        min-width: 40%;
        height: auto;
        display: block;
        border-radius: 1em;
        object-fit: cover;
        overflow: hidden;
        border: 0px solid red !important;
    }

    .sidebyside li {
        font-size: 0.95em;
        margin-bottom: 0.3em;
    }

    .sidebyside li::marker {
        color: var(--color-primary);
    }

    .sidebyside .link {
        margin-top: 1em;
        border: 0px solid red;
        font-size: 1.0em;
    }

    .serviceContainer {
        display: flex;
        gap: 2em;
        align-items: flex-start;
        padding: 0em 0;
        border: 0px solid red;
        margin-bottom: 4em;
    }

    .serviceContainer .textContainer {
        flex: 1;
    }

    .serviceContainer .textContainer h1, 
    .serviceContainer .textContainer h2 {
        margin-top: 0;
        margin-bottom: 0.5em;
    }

    .serviceContainer .textContainer p,
    .serviceContainer .textContainer li {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.3;
        font-size: 1em;
    }

    .textContainer li {
        list-style: square;
        padding-left: 0.5em;
    }

    .textContainer li::marker {
        color: var(--color-primary)
    }

    .serviceContainer .imageContainer {
        flex: 0 0 45%;
        overflow: hidden;
        border-radius: 0.7em;
    }

    .serviceContainer.flipped {
        flex-direction: row-reverse;
    }

    .imageContainer img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 0.7em;
    }

    /* @media (max-width: 768px) {
        .serviceContainer,
        .serviceContainer.flipped {
            flex-direction: column;
        }

        .serviceContainer .imageContainer {
            flex: none;
            width: 100%;
        }
    } */



     .partner-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2em;
    }
    .partner-card {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-decoration: none;
        color: inherit;
        aspect-ratio: 1 / 1;
        padding: 1.5em 1.2em;
        border-radius: 0.6em;
        border: 1px solid #cccccc2c;
        background-color: hsla(0, 0%, 0%, 0.35);
        backdrop-filter: blur(10px);
        box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.336);
        overflow: hidden;
        transition: background-color 0.2s ease-in-out;
    }
    @media (hover: hover) {
        .partner-card:hover {
            background-color: hsla(0, 0%, 22%, 0.089);
        }
    }
    .partner-card__top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6em;
    }
    .partner-card__logo {
        width: 110px;
        height: 110px;
        object-fit: contain;
        filter: grayscale(100%) brightness(1.5);
        transition: filter 0.3s ease;
    }
    @media (hover: hover) {
        .partner-card:hover .partner-card__logo {
            filter: none;
        }
    }
    .partner-card__summary {
        margin: 0;
        font-size: 0.8em;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.65);
    }
    .partner-card__reveal {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 0.5em;
        padding: 2em 1.2em 1.5em;
        opacity: 0;
        transform: translateY(100%);
        transition: transform 0.4s ease, opacity 0.35s ease;
        background: linear-gradient(to top, hsla(0, 0%, 0%, 0.95), hsla(0, 0%, 0%, 0.7));
        pointer-events: none;
    }
    @media (hover: hover) {
        .partner-card:hover .partner-card__reveal {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
    }
    .partner-card__detail {
        margin: 0;
        font-size: 0.78em;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
        font-family: "LITE";
    }
    .partner-card__link {
        font-size: 0.78em;
        font-family: "BOLD";
        color: var(--color-primary);
        letter-spacing: 0.03em;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .partner-card__link:hover {
        color: color-mix(in oklab, var(--color-primary), white 20%);
    }


    .randomImageGrid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1em;
        gap: 1.5em;
        margin: 2em 0;
    }
    
    .randomImageGrid img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 0.5em;
        display: block;
    }

    .pricingLine {
        margin-top: 1em; 
        background-color: var(--color-primary);
        display: inline-block;
        padding: 0.2em 1.5em;
        border-radius: 30em;
        text-shadow: 0 0.05em 0.2em rgba(0, 0, 0, 0.8);
    }

    .pricingLine b {
        font-family: 'XTRA';
    }

    
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1em;
        margin: 1em 0;
    }

    .feature-card {
        text-align: center;
        padding: 30px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .feature-img {
        max-width: 100%;
        border-radius: 0.5em;
        margin-bottom: 20px;
        line-height: 1;
        object-fit: cover;
        aspect-ratio: 1/1;
    }

    .feature-card h3 {
        margin: 15px 0;
        font-size: 18px;
        font-family: 'BOLD';
        /* font-weight: 600; */
    }

    .feature-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
    }