@font-face {
    font-family: "Skranji";
    font-style: normal;
    font-weight: 700;
    font-display: block;
    src:
        url("../fonts/Skranji-Bold.woff2") format("woff2"),
        url("../fonts/Skranji-Bold.woff") format("woff");
}

@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src:
        url("../fonts/Lato-Regular.woff2") format("woff2"),
        url("../fonts/Lato-Regular.woff") format("woff");
}

@font-face {
    font-family: "Lato";
    font-style: italic;
    font-weight: 400;
    font-display: block;
    src:
        url("../fonts/Lato-Italic.woff2") format("woff2"),
        url("../fonts/Lato-Italic.woff") format("woff");
}

:root {
    color-scheme: light;
    --font-style: "Skranji", Comic Sans MS, Textile, cursive;
    --font-normal: "Lato", Helvetica, Arial, sans-serif;
    --font-italic: "Lato", Helvetica, Arial, sans-serif;
    --color-black: color(display-p3 0.129412 0.129412 0.129412 / 1);
    --color-black-hex: #212121;
    --color-white: color(display-p3 1 1 0.941176 / 1);
    --color-white-hex: #fffff0;
    --color-gray: color(display-p3 0.690196 0.745098 0.772549 / 1);
    --color-gray-hex: #b0bec5;
    --color-blue: color(display-p3 0 0.690196 1 / 1);
    --color-blue-hex: #00b0ff;
    --color-dark-blue: color(display-p3 0.14902 0.243137 1 / 1);
    --color-dark-blue-hex: #263eff;
    --color-blue-one: color(display-p3 0.14902 0.243137 1 / 1);
    --color-blue-one-hex: #263eff;
    --color-blue-two: color(display-p3 0.160784 0.278431 1 / 1);
    --color-blue-two-hex: #2947ff;
    --color-blue-three: color(display-p3 0.152941 0.407843 0.956863 / 1);
    --color-blue-three-hex: #2768f4;
    --color-blue-four: color(display-p3 0.152941 0.407843 0.956863 / 1);
    --color-blue-four-hex: #2768f4;
    --color-blue-five: color(display-p3 0.129412 0.505882 0.921569 / 1);
    --color-blue-five-hex: #2181eb;
    --color-yellow: color(display-p3 1 0.670588 0 / 1);
    --color-yellow-hex: #ffab00;
    --transition: all 0.3s ease;
    --box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    --border-radius: 10px;
    --super-btn-size: clamp(1.4rem, 1.2vw + 1rem, 2rem);
    --transition-duration: 0.8s;
    --lightning-width: 60px;
    --lightning-svg-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 500'%3E%3Cpath d='M20,0 V20 L38,55 L12,80 L35,130 L8,175 L30,240 L5,300 L36,370 L10,430 L25,480 L20,500' fill='none' stroke='%23FFBF00' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    --vt-old-fade-duration: calc(var(--transition-duration) * 0.25);
    --vt-new-fade-duration: calc(var(--transition-duration) * 0.5);
    --vt-new-fade-delay: calc(var(--transition-duration) * 0.4);
    --lightning-primary: hsl(52 100% 55%);
    --lightning-core: hsl(50 100% 72%);
    --lightning-glow: hsl(47 100% 65%);
    --lightning-shadow: hsl(44 90% 40%);

    /* Frosted glass mobile nav variables */
    --nav-padding: 1.25rem;
    --nav-border: 4;
    --nav-blur: 10;
    --nav-saturate: 2.8;
    --nav-brightness: 1.25;
    --nav-contrast: 1;
}

@view-transition {
    navigation: auto;
}

@supports (color(display-p3 1 0.95 0.3)) {
    :root {
        --lightning-core: color(display-p3 1 0.95 0.3);
        --lightning-glow: color(display-p3 0.98 0.9 0.25);
        --lightning-shadow: color(display-p3 0.88 0.7 0.18);
        --lightning-primary: color(display-p3 1 0.92 0.2);
    }
}

strong {
    font-style: bold;
}

/* Layout primitives (replacing Bootstrap dependencies) */
.container {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2rem);
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    overflow: visible;
}

.col-md-6 {
    flex: 1 1 360px;
    max-width: 640px;
    width: min(640px, 100%);
}

.services-tabs-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto 0 auto;
    overflow: visible;
}

.offset-md-3 {
    margin-left: 0;
}

.d-grid {
    display: grid;
}

.gap-2 {
    gap: 1rem;
}

.col-6 {
    width: min(420px, 100%);
}

.mx-auto {
    margin-inline: auto;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.align-items-start {
    align-items: flex-start;
}

.flex-column {
    flex-direction: column;
}

.me-3 {
    margin-inline-end: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

.btn:not(.btn-super-motion) {
    border-radius: 999px;
    padding: 0.6rem 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(
        --btn-bg,
        var(--color-dark-blue, var(--color-dark-blue-hex))
    );
    color: var(--btn-text, var(--color-white, var(--color-white-hex)));
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.btn:not(.btn-super-motion):hover {
    background: var(--btn-hover, var(--color-blue, var(--color-blue-hex)));
    transform: translateY(-2px) rotate(-1deg);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.btn:not(.btn-super-motion):active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}

.btn-lg {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    line-height: 1.2;
}

.btn-super-motion {
    --btn-size: var(--super-btn-size, clamp(1.4rem, 1.2vw + 1rem, 2rem));
    --btn-bg: var(--super-btn-bg, #263eff);
    --btn-text: var(--super-btn-text, #efeeec);
    --btn-hover: var(--super-btn-hover, #00b0ff);
    --btn-accent: var(--super-btn-accent, #ffe224);
    --btn-radius: var(--super-btn-radius, 2em);
    --btn-border-color: var(--btn-bg);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--btn-size) * 0.4) calc(var(--btn-size) * 0.8);
    font-size: var(--btn-size);
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--btn-radius);
    transform: rotate(-1deg);
    transition: transform 0.5s cubic-bezier(0.35, 1.75, 0.6, 1);
    will-change: transform;
    contain: layout style paint;
    isolation: isolate;
    z-index: var(--btn-z-index, 200);
    border: 2px solid var(--btn-border-color);
    background: transparent;
    color: var(--btn-text);
    line-height: 1;
    overflow: hidden;
}

.btn-super-motion__bg {
    position: absolute;
    inset: 0;
    background: var(--btn-bg);
    border-radius: inherit;
    z-index: 0;
}

.btn-super-motion__circle-wrap {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    z-index: 1;
}

.btn-super-motion__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    aspect-ratio: 1;
    background: var(--btn-hover);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition:
        transform 0.7s cubic-bezier(0.625, 0.05, 0, 1),
        background-color 0.4s cubic-bezier(0.625, 0.05, 0, 1),
        width 0.7s cubic-bezier(0.625, 0.05, 0, 1),
        opacity 0.7s cubic-bezier(0.625, 0.05, 0, 1);
    pointer-events: none;
    will-change: transform, width;
    opacity: 0;
}

.btn-super-motion__sprites {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    mix-blend-mode: multiply;
    opacity: 0.3;
}

.btn-super-motion__sprites-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 100%;
    color: var(--btn-accent);
}

.btn-super-motion__inner {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
    color: var(--btn-text);
    transition: color 0.7s cubic-bezier(0.625, 0.05, 0, 1);
}

.btn-super-motion__icon {
    flex-shrink: 0;
    width: 1.5em;
    height: 1.5em;
    position: relative;
    overflow: hidden;
    color: var(--btn-accent);
}

.btn-super-motion__icon-svg {
    position: absolute;
    inset: 0;
    width: auto;
    height: 100%;
    transform: translateZ(0);
}

.btn-super-motion__text {
    font-weight: 500;
    font-size: 0.5em;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.3s steps(2, end);
}

.btn-super-motion:hover {
    transform: scale(1.05) rotate(-2deg);
}

.btn-super-motion:hover .btn-super-motion__inner {
    color: var(--btn-bg);
}

.btn-super-motion:hover .btn-super-motion__circle {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.btn-super-motion:hover .btn-super-motion__text {
    animation: wiggle-text 0.3s steps(2, end) infinite;
}

.btn-super-motion:active {
    transform: scale(1.02) rotate(-1deg);
}

[data-sprite-active] .btn-super-motion__icon-svg {
    animation: sprite-lightning 0.45s steps(4, end) infinite;
}

[data-sprite-active]:hover .btn-super-motion__sprites-svg {
    animation: sprite-bg 0.6s steps(3, end) infinite;
}

.btn-super-motion:focus-visible {
    outline: 2px solid var(--btn-border-color);
    outline-offset: 0;
    box-shadow: 0 0 0 4px
        color-mix(in hsl, var(--btn-border-color), transparent 65%);
}

@supports selector(:focus-visible) {
    .btn-super-motion:focus:not(:focus-visible) {
        outline: none;
    }
}

.emoji-rain-container {
    z-index: 150;
    pointer-events: none;
    user-select: none;
    position: fixed;
    inset: 0;
    overflow: hidden;
}

.single-rain-emoji {
    will-change: transform;
    width: max(200px, 15vw);
    position: absolute;
}

.single-rain-emoji.hidden {
    opacity: 0;
}

.single-rain-emoji-image-fire,
.single-rain-emoji-image-love,
.single-rain-emoji-image-shame,
.single-rain-emoji-image-thumbs-down {
    background-position: 50%;
    background-size: cover;
    width: 100%;
    padding-top: 100%;
}

.single-rain-emoji-image-fire {
    background-image: url("https://assets.codepen.io/61668/dinglandia_icon-3d-fire.png");
}

.single-rain-emoji-image-love {
    background-image: url("https://assets.codepen.io/61668/dinglandia_icon-3d-love.png");
}

.single-rain-emoji-image-shame {
    background-image: url("https://assets.codepen.io/61668/dinglandia_icon-3d-shame.png");
}

.single-rain-emoji-image-thumbs-down {
    background-image: url("https://assets.codepen.io/61668/dinglandia_icon-3d-thumbsup.png");
    rotate: 180deg;
}

@container (max-width: 500px) {
    .btn-super-motion {
        --btn-size: var(--super-btn-size, clamp(1.4rem, 1.2vw + 1rem, 2rem));
    }

    .single-rain-emoji {
        width: max(120px, 20vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-super-motion,
    .btn-super-motion__circle,
    .btn-super-motion__inner {
        transition-duration: 0.1s;
    }

    [data-sprite-active] .btn-super-motion__icon-svg,
    [data-sprite-active]:hover .btn-super-motion__sprites-svg,
    [data-sprite-active]:hover .btn-super-motion__text {
        animation: none;
    }

    .btn-super-motion:hover {
        transform: scale(1.02) rotate(-1deg);
    }

    .single-rain-emoji {
        display: none;
    }
}

@supports (transform: translateZ(0)) {
    .btn-super-motion__icon-svg,
    .btn-super-motion__sprites-svg,
    .btn-super-motion__circle {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

@keyframes sprite-lightning {
    to {
        transform: translateX(-100%);
    }
}

@keyframes sprite-bg {
    to {
        transform: translateX(-100%);
    }
}

@keyframes wiggle-text {
    from {
        transform: rotate(1deg);
    }
    to {
        transform: rotate(-1deg);
    }
}

.list-inline {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-inline-item {
    margin: 0;
    display: inline-flex;
}

.navbar {
    width: 100%;
    background: var(--color-white, var(--color-white-hex));
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.5rem;
    max-width: 100%;
}

.navbar-toggler {
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-button {
    gap: 0.1875em;
    flex-direction: column;
    padding: 0.75em;
    font-size: 1em;
    background: transparent;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

.menu-button-line {
    width: 2em;
    height: 0.1875em;
    background-color: #e7dddb;
    border-radius: 999px;
    transform-origin: center;
}

.navbar .collapse {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.75rem 1rem;
}

@media (max-width: 900px) {
    .navbar {
        padding-bottom: 0.5rem;
    }

    .navbar .container {
        flex-wrap: wrap;
        position: relative;
    }

    .navbar .collapse {
        position: absolute;
        top: calc(100% + 4rem);
        left: 1rem;
        right: 1rem;
        display: block;

        /* Frosted glass effect with enhanced shadow and saturation */
        box-shadow:
            0px 0.5px 0.6px hsl(0 0% 0% / 0.06),
            0px 1.8px 2.3px -0.5px hsl(0 0% 0% / 0.07),
            0px 4.2px 5.3px -1.1px hsl(0 0% 0% / 0.09),
            0px 9.7px 12.1px -1.6px hsl(0 0% 0% / 0.1);

        background: linear-gradient(hsl(0 0% 98%), hsl(0 0% 98%)) padding-box;

        padding: var(--nav-padding);
        border-radius: var(--border-radius);
        border: calc(var(--nav-border) * 1px) solid hsl(0 0% 0% / 0.1);

        -webkit-backdrop-filter: blur(calc(var(--nav-blur) * 1px))
            saturate(var(--nav-saturate)) brightness(var(--nav-brightness))
            contrast(var(--nav-contrast));

        backdrop-filter: blur(calc(var(--nav-blur) * 1px))
            saturate(var(--nav-saturate)) brightness(var(--nav-brightness))
            contrast(var(--nav-contrast));

        opacity: 0;
        transform: translateY(-0.5rem);
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }

    .navbar .collapse::after {
        content: "";
        position: absolute;
        top: -0.7rem;
        left: 50%;
        width: 1.25rem;
        height: 1.25rem;

        /* Match the frosted glass effect on the caret */
        background: linear-gradient(hsl(0 0% 98%), hsl(0 0% 98%)) padding-box;

        border-left: calc(var(--nav-border) * 1px) solid hsl(0 0% 0% / 0.1);
        border-top: calc(var(--nav-border) * 1px) solid hsl(0 0% 0% / 0.1);

        -webkit-backdrop-filter: blur(calc(var(--nav-blur) * 1px))
            saturate(var(--nav-saturate)) brightness(var(--nav-brightness))
            contrast(var(--nav-contrast));

        backdrop-filter: blur(calc(var(--nav-blur) * 1px))
            saturate(var(--nav-saturate)) brightness(var(--nav-brightness))
            contrast(var(--nav-contrast));

        transform: translateX(-50%) rotate(45deg);
        border-radius: 0.25rem 0 0 0;
    }

    .navbar .collapse.is-open {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .navbar-nav li {
        width: 100%;
    }

    .navbar-nav .nav-link {
        justify-content: flex-start;
        padding-inline: 1rem;
        border-radius: var(--border-radius);
    }

    .navbar-toggler {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-left: 0;
    }

    .nav-controls {
        order: 2;
        width: auto;
        margin-left: auto;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .navbar .collapse {
        order: 3;
    }
}

@media (max-width: 960px) {
    .navbar .container {
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 901px) {
    .navbar-toggler {
        display: none;
    }
}

@keyframes navReveal {
    from {
        opacity: 0;
        transform: translateY(-0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ... (Keep root variables, keyframes, other styles from Step 1 CSS) ... */
/* ... (Keep Accessibility styles) ... */
/* --- Accessibility (Keep this) --- */
@media (prefers-reduced-motion: reduce) {
    /* Re-enable simple fades for reduced motion if you disable default anims */
    /* ::view-transition-old(root) { animation: vtFadeOut 0.2s ease forwards !important; } */
    /* ::view-transition-new(root) { opacity: 0; animation: vtFadeIn 0.2s ease 0.1s forwards !important; } */
}
*,
::before,
::after {
    box-sizing: border-box;
}

:where(:not(dialog)) {
    margin: 0;
}

:where(html) {
    -webkit-text-size-adjust: none;
}
@media (prefers-reduced-motion: no-preference) {
    :where(html) {
        scroll-behavior: smooth;
    }
}

:where(body) {
    min-block-size: 100svb;
    -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-style);
    font-weight: 700;
    font-display: swap;
    text-wrap: balance;
}

h1 {
    text-align: center;
    font-size: clamp(2.5rem, 2vw + 1rem, 3rem);
    margin-bottom: 2rem;
}

h2 {
    font-family: var(--font-italic);
    font-weight: 400i;
    font-style: italic;
    font-display: swap;
    font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
}

h3 {
    font-size: clamp(2rem, 2vw + 1rem, 2.2rem);
    font-family: var(--font-normal);
    font-weight: 400;
    font-display: swap;
}

h4 {
    font-size: clamp(1.8rem, 2vw + 1rem, 2rem);
    font-family: var(--font-normal);
    font-weight: 400;
    font-display: swap;
}

h5 {
    font-size: 1.6rem;
    font-size: clamp(1.6rem, 2vw + 1rem, 1.8rem);
    font-family: var(--font-normal);
    font-weight: 400;
    font-display: swap;
}

h6 {
    font-size: 1.4rem;
    font-size: clamp(1.4rem, 2vw + 1rem, 1.6rem);
    font-family: var(--font-normal);
    font-weight: 400;
    font-display: swap;
}

p,
li,
ol,
a {
    font-size: clamp(1.4rem, 2vw + 1rem, 2rem);
    font-family: var(--font-normal);
    font-weight: 400;
    font-display: swap;
    text-wrap: pretty;
}

.style {
    font-family: var(--font-style);
    font-weight: 700;
    font-display: swap;
}

.global-nav {
    background: var(--color-white, var(--color-white-hex));
    height: auto;
    overflow: visible;
    z-index: 1100;
    transform: translateY(0);
    transition: transform 0.35s ease;
    will-change: transform;
}
.global-nav .container {
    z-index: 1032;
}
.global-nav .navbar-nav {
    background: inherit;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.global-nav .navbar-nav li {
    background: inherit;
    flex-grow: 1;
    text-align: center;
    text-transform: lowercase;
}
.global-nav .navbar-brand .icon {
    font-size: 40px;
}
.global-nav .navbar-brand .icon-new {
    rotate: 6deg;
    transform: skew(6deg);
    inline-size: 3rem;
}
.global-nav .navbar-brand .icon-new:hover {
    background: radial-gradient(
        var(--color-dark-blue, var(--color-dark-blue-hex)),
        var(--color-blue, var(--color-blue-hex))
    );
}
.global-nav a {
    background: none;
    font-family: var(--font-style);
    color: var(--color-black, var(--color-black-hex));
    font-size: 1.6rem;
    rotate: -6.9deg;
    transform: skew(-6.9deg);
}
.global-nav a:hover {
    color: var(--color-blue, var(--color-blue-hex));
}
.global-nav.global-nav-hidden {
    transform: translateY(-90%);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: auto;
    flex: 0 0 auto;
}

.sound-toggle-wrapper {
    display: flex;
    align-items: center;
}

.sound-toggle {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--color-black, var(--color-black-hex));
    box-shadow: 0 3px 10px rgba(33, 33, 33, 0.12);
    color: var(--color-white, var(--color-white-hex));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    position: relative;
}

.sound-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(33, 33, 33, 0.18);
}

.sound-toggle:focus-visible {
    outline: 3px solid rgba(0, 176, 255, 0.4);
    outline-offset: 3px;
}

.sound-toggle.is-on {
    background: var(--color-blue, var(--color-blue-hex));
    color: var(--color-white, var(--color-white-hex));
    border-color: rgba(0, 176, 255, 0.6);
}

.sound-toggle.is-off {
    background: var(--color-black, var(--color-black-hex));
    color: var(--color-white, var(--color-white-hex));
    border-color: rgba(255, 255, 255, 0.35);
}

.sound-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sound-icon svg {
    width: 2.75rem;
    height: 2.75rem;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.sound-icon path:first-child {
    fill: currentColor;
    stroke: none;
    opacity: 0.85;
}

.sound-icon--on,
.sound-icon--off {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.sound-icon--off {
    opacity: 0;
    transform: scale(0.85);
}

.sound-toggle.is-off .sound-icon--off {
    opacity: 1;
    transform: scale(1);
}

.sound-toggle.is-off .sound-icon--on {
    opacity: 0;
    transform: scale(0.85);
}

.global-nav-shadowed {
    box-shadow: var(--box-shadow);
}

@media (max-width: 992px) {
    .global-nav .container {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .global-nav .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .global-nav .container {
        max-width: 1320px;
    }
}

.nav-link.active {
    color: var(--color-dark-blue, var(--color-dark-blue-hex));
    background:
        url(https://assets.codepen.io/61668/intro-video.gif),
        linear-gradient(var(--color-blue), var(--color-dark-blue)) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
    background-blend-mode: color-dodge;
}

.navbar-toggler {
    z-index: 1000;
}
.navbar-toggler .icon {
    font-size: 44px;
}
.navbar-toggler .icon:hover {
    color: var(--color-blue, var(--color-blue-hex));
}

.navbar-toggler:focusepeatbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.contact-nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: center;
}
.contact-nav .icon {
    font-size: 44px;
}
.contact-nav li {
    list-style-type: none;
}
.contact-nav a {
    display: grid;
    grid-template-columns: auto 1fr;
    justify-items: center;
    align-items: center;
    font-size: 1.2rem;
    gap: 0.5em;
}
@media (min-width: 1200px) {
    .contact-nav {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        align-items: center;
    }
    .contact-nav a {
        font-size: 1.8rem;
    }
    .contact-nav .icon {
        font-size: 88px;
    }
}

.btn-custom {
    font-family: var(--font-style);
    margin: 2rem 0;
    --super-btn-bg: var(--color-dark-blue, var(--color-dark-blue-hex));
    --super-btn-text: var(--color-white, var(--color-white-hex));
    --super-btn-hover: var(--color-blue, var(--color-blue-hex));
    --super-btn-accent: var(--color-yellow, var(--color-yellow-hex));
    --btn-bg: var(--super-btn-bg);
    --btn-text: var(--super-btn-text);
    --btn-hover: var(--super-btn-hover);
    --btn-accent: var(--super-btn-accent);
}

.sticky-fillout-cta {
    position: fixed;
    bottom: clamp(1rem, 2vw, 2rem);
    left: 50%;
    margin: 0;
    transform: translate(-50%, 20px) scale(0.7);
    transform-origin: bottom center;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    z-index: 9999;
    --btn-size: var(--super-btn-size, clamp(1.4rem, 1.2vw + 1rem, 2rem));
    --super-btn-bg: var(--color-yellow, var(--color-yellow-hex));
    --super-btn-hover: #ffd95e;
    --super-btn-text: var(--color-white, var(--color-white-hex));
    --super-btn-accent: var(--color-yellow, var(--color-yellow-hex));
}

.sticky-fillout-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -25%) scale(1);
}

/* @media (max-width: 600px) {
  .sticky-fillout-cta {
    transform: translate(-50%, 24px) scale(0.6);
  }

  .sticky-fillout-cta.is-visible {
    transform: translate(-50%, 4px) scale(0.6);
  }
} */

.custom-list {
    border-left: 4px dotted var(--color-gray, var(--color-gray-hex));
    margin-left: 1rem;
    padding-left: 3rem;
}
.custom-list li {
    list-style-image: url(https://assets.codepen.io/61668/caret-right-fill.svg);
}
.custom-list ul li {
    list-style-image: url(https://assets.codepen.io/61668/caret-right.svg);
}

.pill-btn {
    background: none;
    border: none;
    color: var(--color-white, var(--color-white-hex));
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}
.pill-btn .icon {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    width: 1em;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pill-btn .icon-discover {
    font-size: clamp(2.25rem, 5.5vw, 3.25rem);
}
.pill-btn .icon-develop {
    font-size: clamp(2.75rem, 6.5vw, 3.75rem);
}
.pill-btn .icon-devops {
    font-size: clamp(2.25rem, 5.5vw, 3.25rem);
}
.pill-btn:hover {
    cursor: pointer;
    color: var(--color-white, var(--color-white-hex));
    text-decoration: none;
}

.pill-btn.active {
    color: var(--color-white, var(--color-white-hex));
    text-decoration: none;
    filter: drop-shadow(0 0 0.4rem var(--color-white));
    animation: neon 1.5s ease-in-out infinite alternate;
}

.services-tabs {
    display: grid;
    gap: 2rem;
    align-items: start;
    overflow: visible;
}

@media (min-width: 900px) {
    .services-tabs {
        grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    }
}

.services-tabs__nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    align-items: start;
    width: 100%;
}

.services-tabs__nav .pill-btn {
    width: 100%;
    padding: 0.5rem 0.25rem;
    border-radius: var(--border-radius);
    justify-content: flex-start;
}

.services-tabs__nav .pill-btn p {
    font-size: clamp(0.55rem, 1.5vw, 0.85rem);
    line-height: 1.2;
    margin: 0;
    word-break: break-word;
    hyphens: auto;
}

/* Robot icon sizing to match others */
.pill-btn .icon-robot {
    font-size: clamp(2.25rem, 5.5vw, 3.25rem);
}

@media (max-width: 500px) {
    .services-tabs__nav {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.35rem;
    }

    .services-tabs__nav .pill-btn {
        padding: 0.35rem 0.15rem;
    }

    .services-tabs__nav .pill-btn p {
        font-size: 0.5rem;
    }
}

@media (min-width: 900px) {
    .services-tabs__nav {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 1.5rem;
    }

    .services-tabs__nav .pill-btn {
        flex: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        padding: 1rem;
    }

    .services-tabs__nav .pill-btn p {
        font-size: 1rem;
    }
}

.services-tabs__panels {
    min-height: 0;
    overflow: visible;
}

[data-tab-panel] {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: visible;
}

[data-tab-panel].active {
    display: block;
    opacity: 1;
    height: auto;
    overflow: visible;
}

a {
    font-family: var(--font-style);
    color: var(--color-black, var(--color-black-hex));
    font-weight: 400;
    text-decoration: none;
}
a:hover,
a:focus {
    color: var(--color-blue, var(--color-blue-hex));
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

html {
    view-transition-name: root;
}

.lightning-bolt {
    position: fixed;
    top: -10vh;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(140px, 14vw, 320px);
    height: 160vh;
    background: linear-gradient(
        90deg,
        transparent 0%,
        hsl(42 100% 35% / 0.4) 15%,
        hsl(45 100% 40% / 0.8) 35%,
        hsl(48 100% 45%) 50%,
        hsl(45 100% 40% / 0.8) 65%,
        hsl(42 100% 35% / 0.4) 85%,
        transparent 100%
    );
    clip-path: polygon(
        42% 0%,
        48% 20%,
        28% 22%,
        52% 48%,
        30% 50%,
        58% 82%,
        46% 82%,
        60% 100%,
        40% 80%,
        54% 60%,
        34% 58%,
        56% 32%,
        36% 30%,
        50% 8%
    );
    pointer-events: none;
    mix-blend-mode: normal;
    filter: drop-shadow(0 0 25px hsl(45 100% 45% / 0.7))
        drop-shadow(0 0 50px hsl(42 100% 40% / 0.4)) contrast(1.3) saturate(1.2);
    opacity: 0;
    z-index: 1035;
    view-transition-name: lightning;
    will-change: opacity, transform;
    transition: opacity 100ms ease-out;
}

@supports (clip-path: path("M0 0L1 0")) {
    .lightning-bolt {
        clip-path: path(
            "M46 0 L54 16 L32 20 L56 48 L34 52 L62 84 L50 84 L64 110 L42 82 L56 60 L36 60 L58 30 L38 30 Z"
        );
    }
}

.lightning-bolt.is-active {
    opacity: 1;
    animation:
        lightning-flicker var(--lightning-duration, 650ms) ease-out both,
        pulse-glow var(--lightning-duration, 650ms) ease-out both;
    animation-delay: var(--lightning-delay, 0ms), var(--lightning-delay, 0ms);
}

.lightning-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: normal;
    opacity: 0;
    z-index: 1034;
    transition: opacity 200ms ease-out;
}

.lightning-canvas.is-active {
    opacity: 0.6;
}

body {
    font-family: var(--font-normal);
    font-weight: 400;
    font-display: swap;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--color-white, var(--color-white-hex));
    color: var(--color-black, var(--color-black-hex));
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light;
    }
    body {
        background: var(--color-white, var(--color-white-hex));
        color: var(--color-black, var(--color-black-hex));
    }
}

::view-transition-old(root) {
    animation: vtFadeOut var(--vt-old-fade-duration) ease forwards;
}

::view-transition-new(root) {
    animation: vtFadeIn var(--vt-new-fade-duration) var(--vt-new-fade-delay)
        ease forwards;
}

::view-transition-group(root) {
    z-index: 1050;
    mix-blend-mode: normal;
    pointer-events: none;
}

::view-transition-group(root)::before,
::view-transition-group(root)::after {
    content: "";
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0;
}

::view-transition-group(root)::before {
    top: -10vh;
    width: clamp(10rem, 18vw, 18rem);
    height: 140vh;
    background: radial-gradient(
        circle,
        var(--lightning-glow) 0%,
        transparent 70%
    );
    filter: blur(50px);
    animation: lightningGlow 0.8s ease-out forwards;
}

::view-transition-group(root)::after {
    top: -5vh;
    width: clamp(8rem, 12vw, 12rem);
    height: 150vh;
    background: linear-gradient(
        180deg,
        var(--lightning-core) 0%,
        var(--lightning-glow) 45%,
        var(--lightning-shadow) 100%
    );
    clip-path: polygon(
        50% 0%,
        58% 8%,
        44% 25%,
        62% 38%,
        48% 40%,
        60% 60%,
        42% 63%,
        58% 82%,
        46% 83%,
        54% 100%,
        38% 100%,
        46% 78%,
        34% 78%,
        46% 48%,
        34% 48%,
        48% 20%,
        38% 18%
    );
    filter: drop-shadow(0 0 25px var(--lightning-core))
        drop-shadow(0 0 60px var(--lightning-glow));
    animation: lightningStrike 0.65s cubic-bezier(0.61, 1, 0.88, 1) forwards;
}

@supports (clip-path: path("M0 0L1 0")) {
    ::view-transition-group(root)::after {
        clip-path: path(
            "M50 0 L60 10 L42 32 L64 46 L46 54 L63 76 L44 80 L60 104 L48 106 L56 134 L36 134 L46 94 L32 96 L44 66 L30 66 L46 30 L36 28 Z"
        );
    }
}

@media (prefers-reduced-motion: reduce) {
    ::view-transition-group(root)::before,
    ::view-transition-group(root)::after {
        animation: none;
        opacity: 0;
    }

    .lightning-bolt,
    .lightning-canvas {
        display: none;
    }
}

@keyframes vtFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        filter: saturate(0.6);
    }
}

@keyframes vtFadeIn {
    0% {
        opacity: 0;
        filter: brightness(0.8);
    }
    100% {
        opacity: 1;
        filter: none;
    }
}

@keyframes lightningGlow {
    0% {
        opacity: 0;
        transform: translateX(-50%) scaleY(0.6);
    }
    25% {
        opacity: 0.9;
    }
    60% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scaleY(1.2);
    }
}

@keyframes lightningStrike {
    0% {
        opacity: 0;
        transform: translate(-50%, -10%) scaleY(0.6);
    }
    15% {
        opacity: 1;
    }
    35% {
        opacity: 0.85;
    }
    55% {
        opacity: 0.3;
    }
    75% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 0) scaleY(1.1);
    }
}

::view-transition-group(lightning) {
    animation-duration: 650ms;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: normal;
}

::view-transition-new(lightning),
::view-transition-old(lightning) {
    mix-blend-mode: normal;
    animation: lightning-flicker 650ms ease-out both;
}

@keyframes lightning-flicker {
    0%,
    100% {
        opacity: 0;
        filter: blur(1px) brightness(1);
    }
    12%,
    18%,
    32%,
    46%,
    58% {
        opacity: 1;
        filter: blur(0.4px) brightness(1.6) saturate(1.2);
    }
    22%,
    40%,
    70% {
        opacity: 0.4;
        filter: blur(1.5px) brightness(1.2);
    }
    80% {
        opacity: 0.65;
        filter: blur(0.8px) brightness(1.4) contrast(1.2);
    }
}

@keyframes pulse-glow {
    0%,
    100% {
        transform: translateX(-50%) scaleY(1);
    }
    50% {
        transform: translateX(-50%) scaleY(1.08);
    }
}

.down-arrow {
    animation: bounce 2s infinite ease;
    display: block;
    margin: 2rem auto;
    inline-size: clamp(44px, 2vw + 1rem, 88px);
    z-index: 1000;
}
.down-arrow:hover {
    animation-play-state: paused;
}

/* Animations, from -100% so we get a nice amount of motion on both sides */
@keyframes anim-parallax-y {
    from {
        transform: translateY(calc(-100% * var(--offset) * var(--multiplier)));
    }
    to {
        transform: translateY(calc(100% * var(--offset) * var(--multiplier)));
    }
}

@keyframes anim-parallax-x {
    from {
        transform: translateX(calc(-100% * var(--offset) * var(--multiplier)));
    }
    to {
        transform: translateX(calc(100% * var(--offset) * var(--multiplier)));
    }
}

/* Base frame setup */
.frame {
    --multiplier: 1;
    z-index: 2;

    position: relative;
    width: 100%;
    height: auto;

    /* background: var(--color-light); */
    /*   background-image: var(--texture-noise); */
    /*   border-radius: .5em; */

    /* If you comment this out, you can get a better visual for how the layers are behaving */
    overflow: clip;

    img {
        position: absolute;
        inset: 0;
        height: 100%;
        width: 100%;
    }
}

/* Wrapping the animation with a supports to check browser compatibility */
/* Attach these classes to the frame, so the animation gets applied to every img within. */
@supports (animation-timeline: view()) {
    .parallax-y {
        img {
            /* Removing the prefers-reduced-motion for the demo, but it's a good idea to have this wrapped around animations for sites in production */
            /* @media(prefers-reduced-motion: no-preference) { */
            animation: anim-parallax-y linear forwards;
            animation-timeline: view();
            animation-range: entry 0% exit 100%;
            /* } */
        }
    }
}
@supports (animation-timeline: view()) {
    .parallax-x {
        img {
            /* @media(prefers-reduced-motion: no-preference) { */
            animation: anim-parallax-x linear forwards;
            animation-timeline: view();
            animation-range: entry 0% exit 100%;
            /* } */
        }
    }
}

/* A little message for folks that can't see the parralax */
@supports not (animation-timeline: view()) {
    .supports {
        display: block;
        text-align: center;
        padding: 0.5em;
        margin: 0 auto;
        font-size: var(--step--2);

        &::after {
            content: "🚫 Sorry, animation-timeline: view() isn't supported in your browser.";
        }
    }
}

/* Some basic helper classes */
.frame-a4 {
    aspect-ratio: 1.414 / 1;
}

.frame-square {
    aspect-ratio: 1 / 1;
}

.rays {
    mix-blend-mode: color-dodge;
}

.filter-mutedGreen {
    filter: sepia(100%) hue-rotate(100deg) saturate(50%);
}

.filter-softSepia {
    filter: sepia(20%);
}

.filter-blue {
    filter: sepia(100%) hue-rotate(180deg) saturate(300%);
}

.bottom-layer {
    background: #263eff;
    background: color(display-p3 0.14902 0.243137 1 / 1);
    height: auto;
    z-index: 1;
    position: relative;
    bottom: 0;
    width: 100%;
    min-height: 100dvh;
    border: none;
    translate: 0 -100px;
    @media screen and (width >= 1440px) {
        translate: 0 -50%;
    }
}

.breakout {
    position: relative;
}

.content-grid {
    --padding-inline: 0rem;
    --content-max-width: 100dvw;
    --breakout-max-width: 100dvw;
}

.mountain-base {
    position: absolute;
    height: clamp(4rem, 210px, 6rem);
    width: 100%;
    bottom: 0;
    background: var(--color-blue-one, var(--color-blue-one-hex));
    @media (width >= 1200px) {
        height: clamp(4rem, 210px, 10rem);
    }
}

/* .canyon {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  z-index: 0;
}
.canyon .mountains {
  position: absolute;
  display: block;
  bottom: -5px;
  width: 100%;
  height: 120vh;
  z-index: 0;
}
.canyon .mountains .one, .canyon .mountains .two, .canyon .mountains .three, .canyon .mountains .four, .canyon .mountains .five {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.canyon .mountains .one {
  background-image: url("https://assets.codepen.io/61668/mtnBlue.svg");
  z-index: 0;
}
.canyon .mountains .two {
  background-image: url("https://assets.codepen.io/61668/mtnBlu2.svg");
  z-index: -1;
  top: -50px;
  left: -10px;
  width: 110%;
}
.canyon .mountains .three {
  background-image: url("https://assets.codepen.io/61668/mtnBlue3.svg");
  z-index: -2;
}
.canyon .mountains .four {
  background-image: url("https://assets.codepen.io/61668/mtnBlu4.svg");
  z-index: -3;
}
.canyon .mountains .five {
  background-image: url("https://assets.codepen.io/61668/mtnBlu5.svg");
  z-index: -4;
}

.landing .canyon {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.landing .canyon .mountains {
  position: absolute;
  display: block;
  bottom: -5px;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.landing .canyon .mountains .one, .landing .canyon .mountains .two, .landing .canyon .mountains .three, .landing .canyon .mountains .four, .landing .canyon .mountains .five {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1030px) {
  .landing .canyon .mountains .one, .landing .canyon .mountains .two, .landing .canyon .mountains .three, .landing .canyon .mountains .four, .landing .canyon .mountains .five {
    height: 160%;
  }
}
.landing .canyon .mountains .one {
  background-image: url("https://assets.codepen.io/61668/mtnBlue.svg");
  z-index: 0;
}
.landing .canyon .mountains .two {
  background-image: url("https://assets.codepen.io/61668/mtnBlu2.svg");
  z-index: -1;
  top: initial;
}
.landing .canyon .mountains .three {
  background-image: url("https://assets.codepen.io/61668/mtnBlue3.svg");
  z-index: -2;
}
.landing .canyon .mountains .four {
  background-image: url("https://assets.codepen.io/61668/mtnBlu4.svg");
  z-index: -3;
}
.landing .canyon .mountains .five {
  background-image: url("https://assets.codepen.io/61668/mtnBlu5.svg");
  z-index: -4;
}
@media (min-width: 1030px) {
  .landing .canyon .mountains .two {
    z-index: -1;
    top: -325px;
    left: -10px;
    width: 110%;
  }
} */

.services {
    position: relative;
    background: var(--color-blue-one, var(--color-blue-one-hex));
    margin: 0 auto;
    padding: 4rem 0;
    overflow: visible;
    height: auto;
}
.services h1 {
    text-align: center;
    color: var(--color-white, var(--color-white-hex));
}
.services h2 {
    font-family: var(--font-style);
    color: var(--color-white, var(--color-white-hex));
    font-size: clamp(2rem, 2vw + 1rem, 4rem);
}
.services h3 {
    font-family: var(--font-italic);
    color: var(--color-white, var(--color-white-hex));
    font-style: italic;
    font-size: clamp(2rem, 2vw + 1rem, 3rem);
}
.services p,
.services li,
.services ol {
    color: var(--color-white, var(--color-white-hex));
}
.services .custom-list {
    border-left: 4px dotted var(--color-black, var(--color-black-hex));
    margin-left: 1rem;
    padding-left: 3rem;
}
.services .custom-list li {
    list-style-image: url(https://assets.codepen.io/61668/caret-right-fill-white.svg);
}
.services .custom-list ul li {
    list-style-image: url(https://assets.codepen.io/61668/caret-right-white.svg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    justify-items: center;
    gap: 1rem;
    margin: 3rem auto;
    gap: 3rem;
}
.services-grid a {
    font-family: var(--font-normal);
    font-weight: 400;
    font-display: swap;
    color: var(--color-white, var(--color-white-hex));
    display: grid;
    grid-template-columns: auto 1fr;
    justify-items: center;
    align-items: center;
    gap: 0.5em;
}
.services-grid a:hover {
    color: var(--color-white, var(--color-white-hex));
    animation: neon 1.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 0.4rem var(--color-white));
}
.services-grid p {
    margin-bottom: 0;
}
.services-grid .icon {
    font-size: 48px;
}
.services-grid .icon-discover {
    font-size: 40px;
}
.services-grid .icon-develop {
    font-size: 50px;
}
.services-grid .icon-devops {
    font-size: 40px;
}
@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        align-items: center;
    }
}
@media (min-width: 1200px) {
    .services-grid {
        margin: 3rem auto;
        grid-template-columns: repeat(4, 1fr);
        justify-content: center;
        align-items: center;
    }
    .services-grid .icon {
        font-size: 88px;
    }
    .services-grid .icon-discover {
        font-size: 72px;
    }
    .services-grid .icon-devops {
        font-size: 72px;
    }
}

.gallery,
#portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 401px), 1fr));
    row-gap: 2rem;
    justify-items: center;
    align-items: center;
    margin: 2rem auto;
    justify-content: center;
}

.gallery figure,
#portfolio figure {
    border-radius: var(--border-radius);
    background: var(--color-black, var(--color-black-hex));
    width: 100%;
    max-width: 401px;
    position: relative;
}
.gallery figure {
    box-shadow: none;
}
#portfolio a {
    display: block;
    perspective: 1200px;
    perspective-origin: 50% 50%;
}
#portfolio figure {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --tilt-scale: 1;
    transform-style: preserve-3d;
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
        scale(var(--tilt-scale));
    transition:
        transform 0.4s ease,
        box-shadow 0.35s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    will-change: transform;
}
#portfolio figure::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(255, 255, 255, 0.35),
        transparent 60%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    mix-blend-mode: screen;
}
#portfolio figure.is-tilting::after {
    opacity: 0.45;
}
#portfolio figure.is-tilting {
    transition:
        transform 0.1s ease-out,
        box-shadow 0.35s ease;
}
.gallery img,
#portfolio img {
    display: block;
    transition: var(--transition);
    border: 4px solid var(--color-black, var(--color-black-hex));
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 401px;
    height: 401px;
    aspect-ratio: 1/1;
    overflow-y: clip;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top center;
    object-position: top center;
}
.gallery img:hover,
#portfolio img:hover {
    mix-blend-mode: hard-light;
    cursor: crosshair;
    border: 4px solid var(--color-blue, var(--color-blue-hex));
}
@media (prefers-reduced-motion: reduce) {
    #portfolio a {
        perspective: none;
    }
    #portfolio figure {
        transform: none !important;
    }
}

.water-bg {
    padding: 8rem 2rem;
    position: relative;
    min-height: 80dvh;
    height: auto;
    background-color: var(--color-dark-blue);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg fill-opacity='0.95'%3E%3Cpath fill='%2315b1d6' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%231b98e0' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%232280eb' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%232867f5' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%232F4FFF' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%232a47ff' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%23263eff' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%232136ff' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%231d2dff' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%231825FF' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
}
.water-bg h2 {
    font-family: var(--font-style);
    font-weight: 700;
    font-display: swap;
    font-style: initial;
    text-align: center;
    color: var(--color-white, var(--color-white-hex));
    position: relative;
    rotate: -6.9deg;
    transform: skew(-6.9deg);
    z-index: 3;
}

.A {
    display: inline-grid;
    animation-timeline: view();
    scroll-timeline-axis: block;
    animation-direction: alternate;
    animation-name: scaler;
    animation-delay: 4s;
    animation-timing-function: cubic-bezier(0.1, -0.6, 0.2, 0);
    animation-fill-mode: forwards;
    animation-range-start: contain;
    animation-range-end: contain;
    padding: 0 4.2rem;
    background:
        url(https://assets.codepen.io/61668/intro-video.gif),
        linear-gradient(var(--color-blue), var(--color-dark-blue));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-blend-mode: color-dodge;
    -webkit-text-stroke: 1px var(--color-white, var(--color-white-hex));
    opacity: 0.69;
}

.B {
    display: inline-grid;
    animation-timeline: view();
    scroll-timeline-axis: block;
    animation-direction: alternate;
    animation-name: scaler;
    animation-delay: -4s;
    animation-timing-function: cubic-bezier(0.1, -0.6, 0.2, 0);
    animation-fill-mode: forwards;
    animation-range-start: cover;
    animation-range-end: contain;
    padding: 0 4.2rem;
    background:
        url(https://assets.codepen.io/61668/intro-video.gif),
        linear-gradient(var(--color-blue), var(--color-dark-blue));
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-blend-mode: color-dodge;
    -webkit-text-stroke: 1px var(--color-white, var(--color-white-hex));
    opacity: 0.69;
}

.viking-ship {
    position: relative;
    width: 280px;
    transform: translate(-50vw, 50px);
    animation-timeline: view();
    animation-direction: alternate;
    animation-name: sailing;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-delay: 3s;
    animation-range-start: contain;
    animation-range-end: contain;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 3;
}

/* WATER RIPPLE CTA */
.ripple-cta {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    width: 100%;
    display: grid;
    place-items: stretch;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(
        circle at 20% 20%,
        rgba(4, 34, 68, 0.9),
        var(--color-dark-blue, var(--color-dark-blue-hex))
    );
}

.ripple-cta .water-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ripple-cta canvas#pool {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

/* Viking Ship Container */
.ripple-cta .viking-ship-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    container-type: size;
}

/* Viking Ship SVG */
.ripple-cta .viking-ship {
    position: absolute;
    width: clamp(120px, 15vw, 200px);
    height: auto;
    top: 50%;
    left: var(--ship-x);
    transform: translate(-50%, -50%) rotate(var(--ship-rotation));
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    will-change: transform, left;
    transition: none;
    /* Animation using modern approach with fallback */
    animation: shipBob 4s ease-in-out infinite;
}

/* Modern Scroll/View Timeline (progressive enhancement) */
@supports (animation-timeline: view()) {
    .ripple-cta {
        view-timeline-name: --cta-voyage;
        view-timeline-axis: block;
    }

    .ripple-cta .viking-ship {
        animation: shipVoyage linear both;
        animation-timeline: --cta-voyage;
        animation-range: entry 0% exit 100%;
    }
}

@supports (
    (animation-timeline: scroll()) and (not (animation-timeline: view()))
) {
    .ripple-cta .viking-ship {
        animation: shipVoyage linear both;
        animation-timeline: scroll(root);
        animation-range: 0% 100%;
    }
}

@keyframes shipVoyage {
    0% {
        left: -10%;
        top: 30%;
        transform: translate(-50%, -50%) rotate(-25deg) scale(0.9);
    }

    30% {
        left: 40%;
        top: 45%;
        transform: translate(-50%, -50%) rotate(-5deg) scale(1.1);
    }

    60% {
        left: 70%;
        top: 55%;
        transform: translate(-50%, -50%) rotate(10deg) scale(1.05);
    }

    100% {
        left: 110%;
        top: 70%;
        transform: translate(-50%, -50%) rotate(20deg) scale(0.95);
    }
}

@keyframes shipBob {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(var(--ship-rotation))
            translateY(0);
    }

    25% {
        transform: translate(-50%, -50%) rotate(var(--ship-rotation))
            translateY(-3px) rotateZ(1deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(var(--ship-rotation))
            translateY(2px);
    }

    75% {
        transform: translate(-50%, -50%) rotate(var(--ship-rotation))
            translateY(-2px) rotateZ(-1deg);
    }
}

/* Text Overlay */
.ripple-cta .overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    perspective: 1200px;
    pointer-events: none;
    padding: 8vh 4vw;
    color: rgba(218, 244, 255, 0.9);
    text-align: center;
    mix-blend-mode: screen;
    z-index: 2;
}

.ripple-cta .overlay-inner {
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: center;
}

.ripple-cta .title {
    font-size: clamp(3rem, 4.2vw + 1rem, 6rem);
    letter-spacing: 0.22em;
    font-weight: 700;
    text-transform: initial;
    margin: 0;
    position: relative;
    text-wrap: balance;
}

.ripple-cta .title span {
    display: inline-block;
    transform-origin: center;
    transition: transform 0.25s ease;
    filter: drop-shadow(0 0 18px rgba(0, 34, 68, 0.55));
}

.ripple-cta .subtitle {
    font-size: clamp(2rem, 3vw + 1rem, 4rem);
    letter-spacing: 0.6rem;
    text-transform: initial;
    opacity: 0.75;
}

.ripple-cta .cta {
    font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
    letter-spacing: 0.4rem;
    text-transform: initial;
    opacity: 0.5;
}

.ripple-cta .logo-tag {
    font-size: clamp(1rem, 1vw + 1rem, 2rem);
    letter-spacing: 0.35rem;
    opacity: 0.69;
    margin-top: 0;
    pointer-events: auto;
}

.ripple-cta .logo-tag .btn {
    pointer-events: auto;
    position: relative;
    z-index: var(--btn-z-index, 200);
    touch-action: manipulation;
}

.ripple-cta .trees--cta {
    position: absolute;
    left: 50%;
    bottom: clamp(-2rem, -6vh, -1.5rem);
    width: 125%;
    height: clamp(80px, 14vh, 160px);
    transform: translateX(-50%);
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center bottom;
    z-index: 2;
    opacity: 1;
    pointer-events: none;
}

/* Scroll indicator */
.ripple-cta .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
    color: rgba(218, 244, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    pointer-events: none;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.ripple-cta .fallback {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    background: radial-gradient(
        circle at 40% 20%,
        rgba(8, 42, 68, 0.95),
        rgba(3, 18, 32, 0.98)
    );
    color: #e4f4ff;
    padding: 2.5rem;
    text-align: center;
    font-size: 1rem;
    z-index: 4;
}

/* Container query for responsive ship sizing */
@container (max-width: 768px) {
    .ripple-cta .viking-ship {
        width: 100px;
    }
}

.footer {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    background: var(--color-white, --color-white-hex);
}
.footer a {
    font-family: var(--font-normal);
    font-weight: 400;
    font-display: swap;
}
.footer p,
.footer li,
.footer ol,
.footer a {
    font-size: clamp(0.75rem, 1vw, 1rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.social-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 1rem;
}
.social-nav .icon-new {
    inline-size: 30px;
}
.social-nav .icon-new:hover {
    background: radial-gradient(
        var(--color-dark-blue, var(--color-dark-blue-hex)),
        var(--color-blue, var(--color-blue-hex))
    );
}
@media (min-width: 900px) {
    .social-nav .icon-new {
        inline-size: 44px;
    }
}

.copyright {
    font-family: var(--font-style);
    font-weight: 700;
    font-display: swap;
    margin-bottom: 0;
}

::selection {
    color: var(--color-white, var(--color-white-hex));
    background: var(--color-blue, var(--color-blue-hex));
}

.intro {
    margin: 0 auto;
    display: grid;
    height: 100svh;
    width: 100svw;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    background: transparent;
    position: relative;
    isolation: isolate;
}
.intro .icon-new {
    background: var(--color-black, var(--color-black-hex));
    position: absolute;
    inline-size: 40svw;
    top: 50%;
    left: 50%;
    right: 50%;
    translate: -50% -50%;
    animation-timeline: scroll();
    scroll-timeline-axis: block;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.99, 0.1);
    animation-name: logo;
    rotate: -6.9deg;
    transform: skew(-6.9deg);
    z-index: -1;
}
.intro h1 {
    font-family: var(--font-style);
    font-weight: 700;
    font-display: swap;
    margin: 0 auto;
    padding: 1rem;
    background:
        url(https://assets.codepen.io/61668/intro-video.gif),
        linear-gradient(var(--color-blue), var(--color-dark-blue));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-blend-mode: color-dodge;
    font-size: clamp(10svw, 8vw + 1rem, 24svw);
    text-align: center;
    width: 100%;
    letter-spacing: 0.69rem;
    rotate: -6.9deg;
    transform: skew(-6.9deg);
}

/* Value-based pricing */
.value-pricing {
    position: relative;
    padding-block: clamp(3rem, 8vw, 6rem);
    /* background:
    radial-gradient(circle at 18% 15%, color-mix(in hsl, var(--color-blue, var(--color-blue-hex)), transparent 65%) 0%, transparent 55%),
    radial-gradient(circle at 80% 10%, color-mix(in hsl, var(--color-blue-three, var(--color-blue-three-hex)), transparent 75%) 0%, transparent 45%),
    linear-gradient(180deg, color-mix(in hsl, var(--color-white, var(--color-white-hex)), transparent 3%) 0%, color-mix(in hsl, var(--color-white, var(--color-white-hex)), transparent 28%) 100%); */
    overflow: hidden;
}

.value-pricing__intro {
    text-align: center;
    max-inline-size: 720px;
    margin-inline: auto;
    display: grid;
    gap: 0.75rem;
}

.value-pricing__eyebrow {
    font-family: var(--font-normal);
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: color-mix(
        in hsl,
        var(--color-blue, var(--color-blue-hex)),
        transparent 15%
    );
    margin: 0;
    font-size: clamp(0.95rem, 0.8vw + 0.75rem, 1.25rem);
}

.value-pricing__intro h2 {
    font-family: var(--font-style);
    font-size: clamp(2rem, 2vw + 1.25rem, 3.5rem);
    font-style: initial;
    margin: 0;
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 10%
    );
}

.value-pricing__intro p {
    margin: 0 auto;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.35rem);
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 25%
    );
}

.value-pricing__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: clamp(2rem, 4vw, 4rem);
    margin-top: clamp(2rem, 5vw, 4rem);
}

.pricing-stack-wrapper {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.value-pricing__hint {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.15rem;
    color: color-mix(
        in hsl,
        var(--color-blue, var(--color-blue-hex)),
        transparent 20%
    );
}

.pricing-stack {
    --layer-cost-height: 160px;
    --layer-markup-height: 170px;
    --layer-value-height: 190px;
    position: relative;
    width: min(360px, 100%);
    height: calc(
        var(--layer-cost-height) + var(--layer-markup-height) +
            var(--layer-value-height)
    );
}

.pricing-layer {
    position: absolute;
    left: 0;
    inline-size: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-style);
    font-size: clamp(1.4rem, 1.5vw + 0.75rem, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    border: none;
    border-radius: 1.75rem;
    color: var(--color-white, var(--color-white-hex));
    cursor: pointer;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.3s ease;
    box-shadow: 0 25px 40px rgb(0 0 0 / 0.18);
    padding: 1rem;
}

.pricing-layer:hover,
.pricing-layer:focus-visible {
    filter: brightness(1.05);
}

.pricing-layer:focus-visible {
    outline: 3px solid
        color-mix(
            in hsl,
            var(--color-white, var(--color-white-hex)),
            transparent 10%
        );
    outline-offset: 3px;
}

.pricing-layer.active {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 35px 55px rgb(0 0 0 / 0.24);
    z-index: 10;
}

.pricing-layer.cost {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    height: var(--layer-cost-height);
    bottom: 0;
    z-index: 1;
}

.pricing-layer.markup {
    background: linear-gradient(135deg, #ffc107, #ffd85b);
    color: #4a2a00;
    height: var(--layer-markup-height);
    bottom: var(--layer-cost-height);
    z-index: 2;
}

.pricing-layer.perceived-value {
    background: linear-gradient(135deg, #1fc8c6, #0fbbae);
    height: var(--layer-value-height);
    bottom: calc(var(--layer-cost-height) + var(--layer-markup-height));
    z-index: 3;
}

.bracket {
    position: absolute;
    width: 34px;
    border: 4px solid currentColor;
    border-radius: 999px;
    pointer-events: none;
}

.bracket.cost-plus {
    color: #0d47a1;
    left: -52px;
    bottom: 0;
    height: calc(var(--layer-cost-height) + var(--layer-markup-height));
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.bracket.value-based {
    color: #f57c00;
    right: -68px;
    bottom: 0;
    height: calc(
        var(--layer-cost-height) + var(--layer-markup-height) +
            var(--layer-value-height)
    );
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.bracket-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.25rem;
    font-weight: 700;
}

.info-section {
    flex: 1 1 360px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: color-mix(
        in hsl,
        var(--color-white, var(--color-white-hex)),
        transparent 8%
    );
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px rgb(15 23 42 / 0.12);
    overflow: hidden;
}

.info-header {
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white, var(--color-white-hex));
    background: linear-gradient(
        135deg,
        var(--color-dark-blue, var(--color-dark-blue-hex)) 0%,
        var(--color-blue, var(--color-blue-hex)) 100%
    );
}

.info-content {
    padding: clamp(1.5rem, 2vw, 2.25rem);
    min-height: 220px;
}

.info-item {
    display: none;
    animation: fadeInfo 0.4s ease;
}

.info-item.active {
    display: block;
}

.value-pricing .color-badge {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 0.45rem;
    margin-inline-end: 0.5rem;
    vertical-align: middle;
}

.info-item h3 {
    font-family: var(--font-style);
    font-size: 1.5rem;
    margin-block: 0 0.75rem;
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 5%
    );
}

.info-item p {
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 25%
    );
    margin-block: 0 1rem;
    line-height: 1.6;
}

.info-item ul {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 15%
    );
    line-height: 1.7;
}

.info-note {
    font-style: italic;
    color: color-mix(
        in hsl,
        var(--color-blue, var(--color-blue-hex)),
        transparent 15%
    );
    margin: 0;
}

.value-pricing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.value-pricing__reset {
    border-radius: 999px;
    padding: 0.85rem 1.75rem;
    border: 1px solid
        color-mix(
            in hsl,
            var(--color-blue, var(--color-blue-hex)),
            transparent 35%
        );
    background: transparent;
    color: color-mix(
        in hsl,
        var(--color-blue, var(--color-blue-hex)),
        transparent 10%
    );
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-normal);
    font-size: 0.95rem;
}

.value-pricing__reset:hover,
.value-pricing__reset:focus-visible {
    border-color: var(--color-blue, var(--color-blue-hex));
    color: var(--color-blue, var(--color-blue-hex));
}

.value-pricing__cta {
    flex: 1 1 200px;
    justify-content: center;
}

.value-pricing__takeaways {
    margin-top: clamp(2rem, 5vw, 4rem);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #fff7dc 0%, #fff0c4 100%);
    border: 1px solid #ffe5a5;
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.08);
}

.value-pricing__takeaways h3 {
    font-family: var(--font-style);
    text-align: center;
    margin: 0 0 1.25rem;
    font-size: clamp(1.5rem, 1vw + 1.25rem, 2rem);
    color: #c27400;
}

.value-pricing__takeaways ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.value-pricing__takeaways li {
    position: relative;
    padding-inline-start: 2rem;
    font-weight: 600;
    color: #805200;
    line-height: 1.6;
}

.value-pricing__takeaways li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #059669;
    font-weight: 800;
}

@keyframes fadeInfo {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .value-pricing__grid {
        justify-content: center;
    }

    .pricing-stack {
        --layer-cost-height: 140px;
        --layer-markup-height: 150px;
        --layer-value-height: 165px;
    }

    .bracket.cost-plus {
        left: -44px;
    }

    .bracket.value-based {
        right: -54px;
    }
}

@media (max-width: 640px) {
    .value-pricing__intro {
        text-align: left;
    }

    .value-pricing__grid {
        flex-direction: column;
    }

    .pricing-stack {
        --layer-cost-height: 120px;
        --layer-markup-height: 135px;
        --layer-value-height: 150px;
        width: min(280px, 100%);
        margin-inline: auto;
    }

    .pricing-layer {
        font-size: 1.3rem;
        letter-spacing: 0.1rem;
    }

    .bracket.cost-plus {
        left: -38px;
    }

    .bracket.value-based {
        right: -38px;
    }

    .value-pricing__actions {
        flex-direction: column;
    }

    .value-pricing__cta {
        width: 100%;
    }
}

/* Process timeline */
.process {
    position: relative;
    padding-block: clamp(3rem, 8vw, 6rem);
    overflow: hidden;
}

.process__column {
    width: 100%;
    max-width: min(960px, 100%);
    margin-inline: auto;
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}

.process__eyebrow {
    font-family: var(--font-style);
    font-weight: 700;
    text-transform: initial;
    letter-spacing: 0.3rem;
    font-size: clamp(1.75rem, 2vw + 1rem, 2.75rem);
    text-align: center;
    margin: 0;
}

.process__lede {
    text-align: center;
    font-size: clamp(1rem, 1vw + 0.75rem, 1.4rem);
    margin: 0 auto;
    max-inline-size: 60ch;
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 30%
    );
}

.process__cta-note {
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-blue, var(--color-blue-hex));
    margin: 0 auto;
    margin-block-start: 0.5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: minmax(48px, 90px) 1fr;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: stretch;
    position: relative;
    isolation: isolate;
}

.process-timeline__bolt {
    position: relative;
    min-height: 100%;
}

.process-timeline__bolt::before {
    content: "";
    position: absolute;
    inset: 0;
    width: var(--lightning-width, 60px);
    margin-inline: auto;
    background-image: var(--lightning-svg-url);
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: 50% 0;
    filter: drop-shadow(
        0 0 30px color-mix(in hsl, var(--lightning-glow), transparent 20%)
    );
    animation: boltFlow 5s linear infinite;
}

.process-timeline__glow {
    position: sticky;
    top: clamp(1.5rem, 6vh, 3rem);
    display: block;
    width: 100%;
    height: min(520px, 70vh);
    margin-inline: auto;
    border-radius: 999px;
    background: radial-gradient(
        circle at 50% 35%,
        var(--lightning-core),
        color-mix(in hsl, var(--lightning-glow), transparent 35%)
    );
    filter: blur(25px);
    opacity: 0.55;
    animation: boltPulse 2.5s ease-in-out infinite alternate;
}

.process-accordion {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    perspective: 1200px;
}

.process-step {
    --step-color: var(--color-blue, var(--color-blue-hex));
    --cloud-hue: 205;
    --icon-tilt: -6deg;
    --icon-offset-x: 0%;
    --icon-offset-y: 0%;
    --icon-scale: 1;
    --icon-speed: 12s;
    border: 1px solid color-mix(in hsl, var(--step-color), transparent 55%);
    border-radius: 1.5rem;
    background: color-mix(
        in lch,
        var(--step-color) 6%,
        var(--color-white, var(--color-white-hex)) 96%
    );
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.12);
    transition:
        transform 0.5s cubic-bezier(0.4, 0.75, 0.2, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(12px);
    position: relative;
}

.process-step--discover {
    --step-color: hsl(205 92% 64%);
    --icon-tilt: -9deg;
}

.process-step--prototyping {
    --step-color: hsl(268 75% 68%);
    --cloud-hue: 266;
    --icon-tilt: 7deg;
    --icon-scale: 1.05;
}

.process-step--devops {
    --step-color: hsl(168 71% 55%);
    --cloud-hue: 182;
    --icon-tilt: -4deg;
}

.process-step--marketing {
    --step-color: hsl(36 95% 62%);
    --cloud-hue: 42;
    --icon-offset-x: 6%;
    --icon-tilt: 5deg;
}

.process-step--profits {
    --step-color: hsl(140 62% 50%);
    --cloud-hue: 138;
    --icon-offset-x: -4%;
    --icon-tilt: -2deg;
    --icon-speed: 14s;
}

.process-step[open] {
    border-color: var(--step-color);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px
        color-mix(in hsl, var(--step-color), transparent 45%);
    background: color-mix(
        in hsl,
        var(--color-white, var(--color-white-hex)),
        transparent 5%
    );
}

.process-step summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    padding: clamp(1rem, 2.5vw, 1.75rem);
    cursor: pointer;
    list-style: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.process-step summary > *:not(.process-step__icon-splash) {
    position: relative;
    z-index: 2;
}

.process-step summary::-webkit-details-marker,
.process-step summary::marker {
    display: none;
    font-size: 0;
}

.process-step summary:focus-visible {
    outline: 2px solid var(--color-yellow, var(--color-yellow-hex));
    border-radius: 1.5rem;
    outline-offset: 6px;
}

.process-step__icon-splash {
    position: absolute;
    top: calc(-30% + var(--icon-offset-y, 0%));
    right: calc(-10% + var(--icon-offset-x, 0%));
    width: clamp(170px, 32vw, 320px);
    aspect-ratio: 1 / 1;
    pointer-events: none;
    opacity: 0.32;
    mix-blend-mode: screen;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
    transform: rotate(var(--icon-tilt, -6deg)) scale(var(--icon-scale, 1));
    animation: iconFloat var(--icon-speed, 12s) ease-in-out infinite alternate;
    z-index: 1;
}

.process-step__icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: color-mix(in hsl, var(--step-color), transparent 58%);
    stroke: color-mix(in hsl, var(--step-color), transparent 25%);
    stroke-width: 1.25;
    opacity: 0.85;
    transform-origin: center;
    filter: drop-shadow(
        0 10px 30px color-mix(in hsl, var(--step-color), transparent 40%)
    );
}

.process-step__icon use {
    paint-order: stroke;
}

.process-step__icon-splash--duo .process-step__icon:nth-of-type(2),
.process-step__icon--secondary {
    transform: translate(18%, 14%) rotate(12deg) scale(0.75);
    opacity: 0.55;
}

.process-step__cloud {
    position: relative;
    width: clamp(70px, 9vw, 100px);
    aspect-ratio: 1.4 / 1;
    display: grid;
    place-items: center;
    color: hsl(var(--cloud-hue, 205) 95% 70%);
    animation: cloudDrift 9s ease-in-out infinite alternate;
}

.process-step__cloud svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.process-step__cloud path {
    fill: currentColor;
}

.process-step__index {
    position: absolute;
    font-family: var(--font-style);
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    color: var(--color-black, var(--color-black-hex));
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.6);
}

.process-step__heading {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.process-step__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 40%
    );
}

.process-step__title {
    font-family: var(--font-style);
    font-weight: 700;
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    margin: 0;
}

.process-step__subtitle {
    font-size: 0.95rem;
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 35%
    );
}

.process-step__toggle {
    width: clamp(32px, 3vw, 38px);
    height: clamp(32px, 3vw, 38px);
    color: color-mix(in hsl, var(--step-color), transparent 35%);
    transition:
        rotate 0.4s ease,
        color 0.3s ease;
}

.process-step[open] .process-step__toggle {
    rotate: 225deg;
    color: var(--step-color);
}

.process-step__body {
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
    padding-block: 0;
    display: grid;
    gap: 1rem;
    max-height: 0;
    opacity: 0;
    transform: translateY(-0.5rem);
    transition:
        max-height 0.5s ease,
        opacity 0.35s ease,
        transform 0.35s ease,
        padding 0.35s ease;
    overflow: hidden;
}

.process-step[open] .process-step__body {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    padding-block: 0.5rem clamp(1.25rem, 3vw, 2rem);
}

.process-step__body p {
    margin: 0;
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 20%
    );
    font-size: 1rem;
}

.process-step__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.process-step__list > li {
    line-height: 1.5;
}

.process-step__sublist {
    list-style: disc;
    margin: 0.4rem 0 0 1.25rem;
    color: color-mix(
        in hsl,
        var(--color-black, var(--color-black-hex)),
        transparent 30%
    );
    display: grid;
    gap: 0.25rem;
}

@media (max-width: 768px) {
    .process__eyebrow {
        letter-spacing: 0.18rem;
    }

    .process-timeline {
        grid-template-columns: minmax(32px, 12vw) 1fr;
    }

    .process-step summary {
        grid-template-columns: auto 1fr auto;
        align-items: start;
    }
}

@media (max-width: 600px) {
    .process__cta-note {
        font-size: 0.95rem;
    }

    .process-step__eyebrow {
        letter-spacing: 0.2rem;
    }
}

@keyframes boltFlow {
    0% {
        background-position: 50% 0;
    }
    100% {
        background-position: 50% -500px;
    }
}

@keyframes boltPulse {
    0% {
        opacity: 0.45;
        scale: 0.95;
    }
    100% {
        opacity: 0.85;
        scale: 1.05;
    }
}

@keyframes cloudDrift {
    0% {
        transform: translateY(-4px) rotate(-2deg);
    }
    100% {
        transform: translateY(4px) rotate(2deg);
    }
}

@keyframes iconFloat {
    0% {
        transform: translate3d(0, 0, 0)
            rotate(calc(var(--icon-tilt, -6deg) - 2deg))
            scale(calc(var(--icon-scale, 1) * 0.95));
    }
    100% {
        transform: translate3d(-4%, -3%, 0)
            rotate(calc(var(--icon-tilt, -6deg) + 2deg))
            scale(calc(var(--icon-scale, 1) * 1.05));
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-step,
    .process-step__body,
    .process-step__toggle {
        transition-duration: 0s;
    }

    .process-step__cloud,
    .process-timeline__bolt::before,
    .process-timeline__glow,
    .process-step__icon-splash {
        animation: none;
    }
}

/* Tools CTA */
.tools-cta {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    min-block-size: 100svb;
    margin-block-start: clamp(2rem, 5vw, 4rem);
    margin-inline: 0;
    padding-block: clamp(4rem, 9vw, 6rem);
    padding-inline: clamp(1rem, 4vw, 3rem);
    text-align: center;
    isolation: isolate;
    overflow: visible;
    margin-top: 8rem;
    margin-bottom: 8rem;
}
.tools-cta::before {
    transition:
        all 0.3s ease-in,
        filter 0.3s ease-in-out;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1120px, 98vw);
    height: 100%;
    translate: -50% 0;
    background: url(https://assets.codepen.io/61668/dinglandia-storm-cloud_c.svg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    filter: grayscale(0) drop-shadow(0 0 15px color(display-p3 0.2 0.8 1 / 0.8));
    z-index: -10;
    scale: 0.78;
    animation:
        floatRandom 33s infinite ease,
        cloudLightningGlow 1.5s infinite;
    pointer-events: none;
}
@media (max-width: 1023px) {
    .tools-cta::before {
        scale: 0.88;
    }
}
@media (max-width: 640px) {
    .tools-cta::before {
        scale: 1.45;
        translate: -50% -14vw;
    }
}
@media (max-width: 420px) {
    .tools-cta::before {
        translate: -50% -28vw;
    }
}
.tools-cta .section-wrapper {
    position: relative;
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    width: min(1600px, 100%);
    padding-inline: clamp(0.5rem, 4vw, 3rem);
    margin-inline: auto;
}
.tools-cta--header {
    display: grid;
    place-items: center;
    gap: 1rem;
    z-index: 2;
    position: relative;
}
.tools-cta .hgroup {
    display: grid;
    place-items: center;
    gap: 0.25rem;
}
.tools-cta .headline {
    font-family: var(--font-style);
    font-weight: 700;
    margin: 0 auto;
    font-size: clamp(24px, 10cqi + 2rem, 44px);
    background:
        url(https://assets.codepen.io/61668/intro-video.gif),
        linear-gradient(var(--color-blue), var(--color-dark-blue));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-blend-mode: color-dodge;
    line-height: 1;
    width: 100%;
    rotate: -6.9deg;
    transform: skew(-6.9deg);
}
.tools-cta .tagline {
    margin: 1rem auto;
    max-inline-size: 520px;
    text-align: center;
    font-weight: 700;
    font-size: clamp(18px, 4cqi + 1rem, 33px);
    line-height: 1.1;
    rotate: -6.9deg;
    transform: skew(-6.9deg);
    color: #ffff8f;
    text-shadow:
        1px 0 #89cff0,
        -1px 0 #89cff0,
        0 1px #89cff0,
        0 -1px #89cff0,
        1px 1px #89cff0,
        -1px -1px #89cff0,
        1px -1px #89cff0,
        -1px 1px #89cff0,
        2px 0 #4682b4,
        -2px 0 #4682b4,
        0 2px #4682b4,
        0 -2px #4682b4,
        2px 2px #4682b4,
        -2px -2px #4682b4,
        2px -2px #4682b4,
        -2px 2px #4682b4,
        0 0 10px #89cff0;
    position: relative;
}
.tools-cta .tagline::before {
    content: "";
    position: absolute;
    inset: 10px 10px -10px;
    background: linear-gradient(
        to right in oklch longer hue,
        hsl(52 100% 55%) 0 0
    );
    filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
}
.tools-cta .cta-btn {
    --btn-size: clamp(2rem, 0.8vw + 1.6rem, 2.8rem);
    --super-btn-bg: var(--color-dark-blue, var(--color-dark-blue-hex));
    --super-btn-hover: var(--color-blue, var(--color-blue-hex));
    --super-btn-text: #ffff8f;
    --super-btn-accent: var(--color-yellow, var(--color-yellow-hex));
    text-transform: lowercase;
    letter-spacing: 0.08em;
}
.tools-cta--cards {
    --nth-siblings: 9;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 0.2s ease-in-out;
    width: 100%;
    display: grid;
    place-items: center;
}
.tools-cta--card {
    padding: 0;
}
.tools-cta .avatar-link-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}
.tools-cta .avatar-link-wrapper:is(:hover, :focus-visible, :active) {
    --avatar-img-scale: 1.1;
    --avatar-opacity: 1;
    --tooltip-opacity: 1;
    --tooltip-visibility: visible;
}
.tools-cta .visual {
    aspect-ratio: 1;
    border-radius: 1rem;
    inline-size: 240px;
    opacity: var(--avatar-opacity, 1);
    overflow: visible;
    transition: opacity 0.3s ease;
}
.tools-cta .avatar-img {
    block-size: 100%;
    display: block;
    inline-size: 100%;
    object-fit: cover;
    scale: var(--avatar-img-scale, 1);
    transition: all 0.3s ease;
}
.tools-cta .tooltiptext {
    display: grid;
    gap: 4px;
}
.tools-cta .team-name {
    text-wrap: balance;
    font-family: var(--font-style);
    font-size: clamp(18px, 10cqi + 2rem, 24px);
    font-weight: 700;
    margin: 0 auto;
    background:
        url(https://assets.codepen.io/61668/intro-video.gif),
        linear-gradient(var(--color-blue), var(--color-dark-blue));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-blend-mode: color-dodge;
    text-align: inherit;
    width: 100%;
    line-height: 1;
}
.tools-cta .team-title {
    font-size: clamp(18px, 10cqi + 2rem, 21px);
    font-style: italic;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.tools-cta .team-bio {
    text-wrap: balance;
    font-size: clamp(16px, 10cqi + 2rem, 18px);
    line-height: 1.1;
}
@media (max-width: 1023px) {
    .tools-cta .avatar-link-wrapper {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 1.25rem 1.5rem;
        border-radius: 28px;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.08)
        );
        border: 1px solid rgba(255, 255, 255, 0.28);
        box-shadow:
            0 18px 44px rgba(0, 0, 0, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
        color: #0c0c0f;
        text-shadow: none;
        backdrop-filter: blur(14px) saturate(140%);
        -webkit-backdrop-filter: blur(14px) saturate(140%);
        isolation: isolate;
        overflow: hidden;
    }
    .tools-cta .avatar-link-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.04)
        );
        filter: url(#lg-dist);
        pointer-events: none;
        z-index: 0;
    }
    .tools-cta .avatar-link-wrapper::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(
                circle at 20% 20%,
                rgba(255, 255, 255, 0.55),
                transparent 45%
            ),
            radial-gradient(
                circle at 85% 5%,
                rgba(255, 255, 255, 0.3),
                transparent 35%
            ),
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.1),
                rgba(255, 255, 255, 0.02)
            );
        mix-blend-mode: screen;
        opacity: 0.9;
        pointer-events: none;
        z-index: 0;
    }
    .tools-cta .avatar-link-wrapper > * {
        position: relative;
        z-index: 1;
    }
    .tools-cta--cards {
        display: grid;
        grid-auto-flow: column;
        gap: 28px;
        max-inline-size: 100%;
        overflow-x: auto;
        padding-block: 32px;
        padding-inline: 24px;
        scroll-snap-type: x mandatory;
    }
    .tools-cta--card {
        scroll-snap-align: center;
        width: min(360px, 84vw);
    }
    .tools-cta .visual {
        inline-size: clamp(140px, 46vw, 200px);
        border-radius: 20px;
        align-self: center;
    }
    .tools-cta .tooltiptext {
        gap: 0.35rem;
        text-align: left;
        width: 100%;
    }
}
@media (min-width: 1024px) {
    .tools-cta .section-wrapper {
        grid-template-areas: "stack";
        place-items: center;
        min-height: clamp(720px, 75vw, 1100px);
        padding-inline: clamp(1rem, 3vw, 4rem);
    }
    .tools-cta--header,
    .tools-cta--cards {
        grid-area: stack;
    }
    .tools-cta--cards {
        width: min(1600px, 90vw);
        min-block-size: clamp(720px, 65vw, 1100px);
        position: relative;
        margin-inline: auto;
        display: block;
        rotate: -6.9deg;
        transform: skew(-6.9deg);
    }
    .tools-cta--cards:has(.tools-cta--card:hover) .tools-cta--card:not(:hover) {
        filter: blur(4px) sepia(0.6);
    }
    .tools-cta--card {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        will-change: transform;
        transition: filter 0.3s ease;
    }
    .tools-cta--cards.is-orbiting .tools-cta--card {
        transition: none;
    }
    .tools-cta--card:hover .avatar-img {
        rotate: 6.9deg;
        transform: skew(6.9deg);
    }
    .tools-cta .visual {
        inline-size: 144px;
        border-radius: 999px;
    }
    .tools-cta .tooltiptext {
        position: absolute;
        max-inline-size: 22ch;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease;
        line-height: 1.69;
        pointer-events: none;
        user-select: none;
        rotate: 6.9deg;
        transform: skew(6.9deg);
        color: inherit;
        text-shadow: none;
    }
    .tools-cta
        .avatar-link-wrapper:is(:hover, :focus-visible, :active)
        .tooltiptext {
        opacity: 1;
        visibility: visible;
    }
    .tools-cta--card[data-direction="right"] .tooltiptext {
        text-align: start;
        left: calc(100% + 18px);
    }
    .tools-cta--card[data-direction="left"] .tooltiptext {
        text-align: end;
        right: calc(100% + 18px);
    }
    .tools-cta .tooltiptext::before {
        content: "";
        position: absolute;
        inset: 10px 10px -10px;
        background: linear-gradient(
            to right in oklch longer hue,
            hsl(52 100% 55%) 0 0
        );
        filter: blur(20px);
        border-radius: inherit;
        z-index: -1;
        transform: skew(6.9deg);
    }
}
@keyframes floatRandom {
    0% {
        transform: translate(0, 0);
    }
    10% {
        transform: translate(70px, -50px);
    }
    25% {
        transform: translate(-60px, 40px);
    }
    35% {
        transform: translate(30px, -80px);
    }
    50% {
        transform: translate(-90px, -20px);
    }
    65% {
        transform: translate(50px, 60px);
    }
    75% {
        transform: translate(-40px, -70px);
    }
    85% {
        transform: translate(80px, 30px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes cloudLightningGlow {
    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        filter: grayscale(0);
    }
    10% {
        filter: grayscale(1) sepia(1) brightness(1.2);
    }
    25% {
        filter: grayscale(0);
    }
    43% {
        filter: grayscale(1) sepia(1) brightness(4);
    }
    50% {
        filter: grayscale(0) sepia(1) brightness(1.2);
    }
    69% {
        filter: grayscale(0);
    }
}

.full-height {
    overflow: visible;
    position: relative;
    display: grid;
    height: 100svh;
}
.full-height h1 {
    font-family: var(--font-style);
    font-weight: 700;
    font-display: swap;
    background: url(https://assets.codepen.io/61668/intro-video.gif) no-repeat;
    background-size: cover;
    background-position: center center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 20dvw;
    text-align: center;
    background-blend-mode: lighten;
    rotate: -6.9deg;
    transform: skew(-6.9deg);
}

/* UTILITIE CLASSES */
.skew {
    rotate: -6.9deg;
    transform: skew(-6.9deg);
}

/* ICONS MASKS */
.icon-new[name="logo"] {
    mask: var(--svg-logo) center/contain no-repeat;
    -webkit-mask: var(--svg-logo) center/contain no-repeat;
}

.icon-new[name="facebook"] {
    mask: var(--svg-facebook) center/contain no-repeat;
    -webkit-mask: var(--svg-facebook) center/contain no-repeat;
}

.icon-new[name="instagram"] {
    mask: var(--svg-instagram) center/contain no-repeat;
    -webkit-mask: var(--svg-instagram) center/contain no-repeat;
}

.icon-new[name="x"] {
    mask: var(--svg-x) center/contain no-repeat;
    -webkit-mask: var(--svg-x) center/contain no-repeat;
}

.icon-new[name="codepen"] {
    mask: var(--svg-codepen) center/contain no-repeat;
    -webkit-mask: var(--svg-codepen) center/contain no-repeat;
}

.icon-new[name="soundcloud"] {
    mask: var(--svg-soundcloud) center/contain no-repeat;
    -webkit-mask: var(--svg-soundcloud) center/contain no-repeat;
}

.icon-new[name="linkedin"] {
    mask: var(--svg-linkedin) center/contain no-repeat;
    -webkit-mask: var(--svg-linkedin) center/contain no-repeat;
}

.icon-new[name="css"] {
    mask: var(--svg-css) center/contain no-repeat;
    -webkit-mask: var(--svg-css) center/contain no-repeat;
}

.icon-new[name="html"] {
    mask: var(--svg-html) center/contain no-repeat;
    -webkit-mask: var(--svg-html) center/contain no-repeat;
}

.icon-new[name="js"] {
    mask: var(--svg-js) center/contain no-repeat;
    -webkit-mask: var(--svg-js) center/contain no-repeat;
}

/* ICONS URLs */
.icon-new {
    --svg-logo: url(https://assets.codepen.io/61668/valknut-mountains.svg);
    --svg-facebook: url(https://assets.codepen.io/61668/ufeast-facebook.svg);
    --svg-instagram: url(https://assets.codepen.io/61668/ufeast-instagram.svg);
    --svg-x: url(https://assets.codepen.io/61668/ufeast-x.svg);
    --svg-codepen: url(https://assets.codepen.io/61668/codepen-icon.svg);
    --svg-soundcloud: url(https://assets.codepen.io/61668/dinglandia-soundcloud.svg);
    --svg-linkedin: url(https://assets.codepen.io/61668/linked-in-icon.svg);
    --svg-css: url(https://assets.codepen.io/61668/dland-css.svg);
    --svg-html: url(https://assets.codepen.io/61668/dland-html.svg);
    --svg-js: url(https://assets.codepen.io/61668/dland-js.svg);
}

/* ICONS STYLES */
.icon-new {
    inline-size: 4rem;
    aspect-ratio: 1;
    background: var(--color-black, var(--color-black-hex));
}

.clouds {
    background: url(https://assets.codepen.io/61668/dinglandia-clouds.svg)
        repeat-x;
    height: 100px;
    width: 100dvw;
    background-size: contain;
    position: fixed;
    top: 1rem;
    left: 0;
    z-index: -1;
    pointer-events: none;
    filter: drop-shadow(0 0 0.75rem var(--color-white, var(--color-white-hex)));
}

.trees {
    background: url(https://assets.codepen.io/61668/dinglandia-trees.svg)
        repeat-x;
    height: 100px;
    width: 100dvw;
    background-size: contain;
    position: absolute;
    bottom: -24px;
    left: 0;
    filter: drop-shadow(0 0 0.75rem var(--color-white, var(--color-white-hex)));
    z-index: 6;
    pointer-events: none;
}

.waves > use {
    animation: move-forever 2s -2s linear infinite;
}

.waves > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 6s;
}

.waves > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
}

.ocean svg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30dvh;
    max-height: 420px;
    z-index: 1;
}
@media screen and (min-width: 800px) {
    .ocean svg {
        height: 45dvh;
        max-height: 500px;
    }
}
@media screen and (min-width: 1200px) {
    .ocean svg {
        height: 60dvh;
        max-height: 600px;
    }
}

.pswp {
    --pswp-bg: var(--color-white, var(--color-white-hex));
    --pswp-placeholder-bg: var(--color-black, var(--color-black-hex));
    --pswp-root-z-index: 100000;
    --pswp-preloader-color: rgba(0, 255, 255, 0.4);
    --pswp-preloader-color-secondary: rgba(0, 255, 255, 0.9);
    --pswp-icon-color: var(--color-blue, var(--color-blue-hex));
    --pswp-icon-color-secondary: var(
        --color-dark-blue,
        var(--color-dark-blue-hex)
    );
    --pswp-icon-stroke-color: var(
        --color-dark-blue,
        var(--color-dark-blue-hex)
    );
    --pswp-icon-stroke-width: 4px;
    --pswp-error-text-color: var(--pswp-icon-color);
}
.pswp h2 {
    text-align: center;
    text-wrap: balance;
    font-size: clamp(2dvw, 3vmin + 1rem, 4dvw);
    color: var(--color-dark-blue, var(--color-dark-blue-hex));
    background:
        url(https://assets.codepen.io/61668/intro-video.gif),
        linear-gradient(var(--color-blue), var(--color-dark-blue)) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    color: transparent !important;
    background-blend-mode: color-dodge;
    text-transform: lowercase;
    display: block;
    overflow: visible;
}
.pswp p {
    margin: 1rem auto;
    color: var(--color-dark-blue, var(--color-dark-blue-hex));
    animation: neon 1.5s ease-in-out infinite alternate;
    text-align: center;
    font-size: clamp(1dvw, 2vmin + 1rem, 2dvw);
}
.pswp ul {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.pswp .icon-new {
    background: var(--color-dark-blue, var(--color-dark-blue-hex));
    inline-size: clamp(44px, 2vw + 1rem, 88px);
}
.pswp .pswp__dynamic-caption--aside {
    padding: 1rem;
}
.pswp .pswp__dynamic-caption--mobile {
    padding: 2rem;
}

/* Mission Lightning Layout */
.mission {
    position: relative;
    isolation: isolate;
    padding: clamp(3rem, 6vw, 6rem) 0;
}

.mission-copy {
    display: flow-root;
    position: relative;
    container-type: inline-size;
}

.mission-copy .lightning-wrap {
    float: left;
    width: clamp(180px, 25vw, 280px);
    height: clamp(360px, 50vh, 540px);
    margin: 0 2rem 1rem 0;
    shape-outside: polygon(
        50% 0%,
        65% 35%,
        85% 40%,
        60% 55%,
        70% 100%,
        45% 65%,
        30% 100%,
        40% 55%,
        15% 40%,
        35% 35%
    );
    shape-margin: clamp(1rem, 3vw, 2rem);
    position: relative;
    z-index: -1;
}

.mission-copy .animation {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 320px;
}

.mission-copy .wrapper {
    transform-style: preserve-3d;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.mission-copy .svg-wrap {
    position: relative;
    transform-style: preserve-3d;
    animation: mission-bolt-spin 2s infinite
        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mission-copy .svg-wrap svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.mission-copy .svg-wrap svg ~ svg {
    position: absolute;
    inset: 0;
    transform: translateZ(var(--z, -1px));
}

.mission-copy .svg-wrap svg:nth-child(2) {
    --z: -1px;
}
.mission-copy .svg-wrap svg:nth-child(3) {
    --z: -2px;
}
.mission-copy .svg-wrap svg:nth-child(4) {
    --z: -3px;
}
.mission-copy .svg-wrap svg:nth-child(5) {
    --z: -4px;
}
.mission-copy .svg-wrap svg:nth-child(6) {
    --z: -5px;
}
.mission-copy .svg-wrap svg:nth-child(7) {
    --z: 1px;
}
.mission-copy .svg-wrap svg:nth-child(8) {
    --z: 2px;
}
.mission-copy .svg-wrap svg:nth-child(9) {
    --z: 3px;
}
.mission-copy .svg-wrap svg:nth-child(10) {
    --z: 4px;
}
.mission-copy .svg-wrap svg:nth-child(11) {
    --z: 5px;
}

.mission-text {
    font-family: var(--font-normal);
    color: #2c2c2c;
    letter-spacing: 0.02em;
    text-align: left;
    text-wrap: balance;
    font-size: clamp(1rem, 2.5vw + 0.5rem, 1.35rem);
    line-height: 1.7;
    font-weight: 400;
}

.mission-text p + p {
    margin-top: 1.5em;
}

.mission-text strong {
    color: #1a1a2e;
    font-weight: 600;
}

.mission .d-grid {
    margin-top: clamp(2rem, 4vw, 3rem);
}

@container (max-width: 600px) {
    .mission-copy .lightning-wrap {
        float: left;
        margin: 0 1.5rem 1rem 0;
        width: min(200px, 50vw);
        height: clamp(300px, 45vh, 400px);
    }

    .mission-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .mission-copy .lightning-wrap {
        float: left;
        margin: 0 1.5rem 1rem 0;
        width: min(200px, 50vw);
        height: clamp(300px, 45vh, 400px);
    }

    .mission-text {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mission-copy .svg-wrap {
        animation: none;
    }
}

@keyframes mission-bolt-spin {
    to {
        transform: rotateY(360deg);
    }
}

/* ANIMATION */
@keyframes logo {
    1% {
        background: radial-gradient(
            var(--color-dark-blue, var(--color-dark-blue-hex)),
            var(--color-blue, var(--color-blue-hex))
        );
        mix-blend-mode: hard-light;
    }
    50% {
        scale: 3;
        mix-blend-mode: soft-light;
        background: radial-gradient(
            var(--color-dark-blue, var(--color-dark-blue-hex)),
            var(--color-blue, var(--color-blue-hex))
        );
    }
}
@keyframes sailing {
    0% {
        transform: translate(0, 50px);
    }
    25% {
        transform: translate(25dvw, 50px);
    }
    50% {
        transform: translate(50dvw, 50px);
    }
    75% {
        transform: translate(75dvw, 50px);
    }
    100% {
        transform: translate(110dvw, 50px);
    }
}
@keyframes bounce {
    0% {
        transform: translateY(-170px);
    }
    50% {
        transform: translateY(-185px);
    }
    100% {
        transform: translateY(-170px);
    }
}
@keyframes neon {
    from {
        text-shadow:
            0 0 10px #fffff0,
            0 0 20px #fffff0,
            0 0 30px #fffff0,
            0 0 40px #228dff,
            0 0 70px #228dff,
            0 0 80px #228dff,
            0 0 100px #228dff,
            0 0 150px #228dff;
    }
    to {
        text-shadow:
            0 0 5px #fffff0,
            0 0 10px #fffff0,
            0 0 15px #fffff0,
            0 0 20px #228dff,
            0 0 35px #228dff,
            0 0 40px #228dff,
            0 0 50px #228dff,
            0 0 75px #228dff;
    }
}
@keyframes move-forever {
    0% {
        transform: translate(-90px, 0%);
    }
    100% {
        transform: translate(85px, 0%);
    }
}
@keyframes scaler {
    50% {
        scale: 4.2;
    }
}
/* Define the keyframes for the Flash animation */
@keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
/* Apply the animation to an element */
.flash {
    animation: flash 1s ease-in-out;
}

.rain {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

/* Hide rain on mobile for performance */
@media (max-width: 768px), (hover: none) {
    .rain {
        display: none !important;
    }
}

/* Cursor Trail Effect Styles */
.trail-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.trail-list {
    position: relative;
    width: 100%;
    height: 100%;
}

.trail-item {
    position: absolute;
    width: clamp(10em, 14vw, 18em);
    height: clamp(13em, 18vw, 24em);
    border-radius: 0.5rem;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    contain: layout style paint;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trail-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .trail-wrap {
        display: none;
    }
}
/* 404 Storm Minigame */
.storm-404 {
    --storm-ink: #0f141a;
    --storm-steel: #1f2b36;
    --storm-fog: #d9e3ef;
    --storm-brass: #f5c16b;
    --storm-ice: #8be1ff;
    --storm-ember: #f98960;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(102, 132, 166, 0.35),
            transparent 45%
        ),
        radial-gradient(
            circle at 80% 10%,
            rgba(33, 52, 82, 0.55),
            transparent 40%
        ),
        linear-gradient(160deg, #0f141a 0%, #1a2330 45%, #0d1016 100%);
    color: #f5f0e6;
    width: 100vw;
    height: 100svh;
    min-height: 44em;
    position: relative;
    overflow: hidden;
    font-family: "Skranji", "Lato", sans-serif;
}

.storm-404__grain {
    pointer-events: none;
    position: absolute;
    inset: -20%;
    opacity: 0.2;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.06) 0 2px,
            transparent 2px 6px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.04) 0 1px,
            transparent 1px 5px
        );
    mix-blend-mode: screen;
}

.storm-404__lightning {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 40% 25%,
        rgba(124, 210, 255, 0.25),
        transparent 55%
    );
    opacity: 0;
    animation: storm-flash 10s infinite;
}

@keyframes storm-flash {
    0%,
    78%,
    100% {
        opacity: 0;
    }
    80% {
        opacity: 0.35;
    }
    81% {
        opacity: 0.12;
    }
    84% {
        opacity: 0.4;
    }
    88% {
        opacity: 0.05;
    }
}

.storm-404__nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 48px;
}

.storm-404__logo {
    font-size: 26px;
    letter-spacing: 1px;
    color: #f5f0e6;
    text-decoration: none;
    text-transform: uppercase;
}

.storm-404__actions {
    display: flex;
    gap: 18px;
    align-items: center;
}

.storm-404__link {
    color: rgba(245, 240, 230, 0.7);
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.storm-404__cta {
    color: #0f141a;
    text-decoration: none;
    background: linear-gradient(120deg, #f5c16b, #f98960);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.storm-404__center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    pointer-events: none;
}

.storm-404__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 14px;
    color: rgba(245, 240, 230, 0.65);
    margin-bottom: 14px;
}

.storm-404__title {
    display: flex;
    gap: 12px;
    font-size: clamp(5rem, 18vw, 16rem);
    line-height: 0.8;
    margin: 0;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* 404 Face Animation */
.storm-404__face {
    display: block;
    width: clamp(10rem, 25vw, 16rem);
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.storm-404__face-eyes,
.storm-404__face-eye-lid,
.storm-404__face-mouth-left,
.storm-404__face-mouth-right,
.storm-404__face-nose,
.storm-404__face-pupil {
    animation: storm-face-eyes 1s 0.3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.storm-404__face-eye-lid,
.storm-404__face-pupil {
    animation-duration: 4s;
    animation-delay: 1.3s;
    animation-iteration-count: infinite;
}

.storm-404__face-eye-lid {
    animation-name: storm-face-eye-lid;
}

.storm-404__face-mouth-left,
.storm-404__face-mouth-right {
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.storm-404__face-mouth-left {
    animation-name: storm-face-mouth-left;
}

.storm-404__face-mouth-right {
    animation-name: storm-face-mouth-right;
}

.storm-404__face-nose {
    animation-name: storm-face-nose;
}

.storm-404__face-pupil {
    animation-name: storm-face-pupil;
}

@keyframes storm-face-eye-lid {
    from,
    40%,
    45%,
    to {
        transform: translateY(0);
    }
    42.5% {
        transform: translateY(17.5px);
    }
}

@keyframes storm-face-eyes {
    from {
        transform: translateY(112.5px);
    }
    to {
        transform: translateY(15px);
    }
}

@keyframes storm-face-pupil {
    from,
    37.5%,
    40%,
    45%,
    87.5%,
    to {
        stroke-dashoffset: 0;
        transform: translate(0, 0);
    }
    12.5%,
    25%,
    62.5%,
    75% {
        stroke-dashoffset: 0;
        transform: translate(-35px, 0);
    }
    42.5% {
        stroke-dashoffset: 35;
        transform: translate(0, 17.5px);
    }
}

@keyframes storm-face-mouth-left {
    from,
    50% {
        stroke-dashoffset: -102;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes storm-face-mouth-right {
    from,
    50% {
        stroke-dashoffset: 102;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes storm-face-nose {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(0, 22.5px);
    }
}

.storm-404__sub {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 14px;
    color: rgba(245, 240, 230, 0.65);
    margin-top: 20px;
}

.storm-404__arena {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.storm-404__targets {
    position: absolute;
    inset: 0;
}

.storm-404__zeus {
    position: absolute;
    left: 50%;
    bottom: 4%;
    width: min(220px, 38vw);
    transform: translate(-50%, 0);
    z-index: 4;
    pointer-events: none;
    display: none;
}

.storm-404__zeus-glow {
    position: absolute;
    inset: -18%;
    background: radial-gradient(
        circle,
        rgba(139, 225, 255, 0.3),
        transparent 70%
    );
    filter: blur(12px);
    opacity: 0.7;
}

.storm-404__zeus-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45));
}

.storm-target {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 96px;
    height: 96px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s ease;
}

.storm-target__glow {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(123, 214, 255, 0.2),
        transparent 70%
    );
    opacity: 0.7;
}

.storm-target__svg {
    width: 100%;
    height: 100%;
}

.storm-target.is-hit {
    transform: translate(-50%, -50%) scale(0.9);
}

.storm-404__line {
    position: absolute;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 237, 160, 0.95),
        rgba(255, 237, 160, 0)
    );
    opacity: 0;
    transform-origin: 0 50%;
    pointer-events: none;
    box-shadow: 0 0 14px rgba(255, 217, 110, 0.6);
}

.storm-404__pull {
    position: absolute;
    left: 50%;
    bottom: 12%;
    width: 92px;
    height: 92px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    cursor: grab;
    touch-action: none;
    z-index: 5;
}

.storm-404__pull-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(245, 240, 230, 0.5);
    border-radius: 50%;
}

.storm-404__pull-core {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        #fffbe0 0%,
        #f5c16b 55%,
        #c76b4a 100%
    );
    box-shadow:
        0 0 24px rgba(245, 201, 107, 0.45),
        0 8px 20px rgba(0, 0, 0, 0.35);
}

.storm-404__pull-text {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 230, 0.6);
    white-space: nowrap;
}

.storm-404__bolt {
    position: absolute;
    left: 50%;
    top: 65%;
    width: clamp(60px, 8vw, 120px);
    height: clamp(200px, 28vw, 320px);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    filter: drop-shadow(0 0 18px rgba(245, 201, 107, 0.6));
}

.storm-404__bolt-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.storm-404__hud {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    z-index: 6;
}

.storm-404__hud-card {
    background: rgba(18, 26, 34, 0.9);
    border: 1px solid rgba(245, 240, 230, 0.15);
    border-radius: 20px;
    padding: 32px 36px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: 0.4s ease;
    pointer-events: auto;
    min-width: min(360px, 90vw);
}

.storm-404__hud[data-axe-status="finished"] .storm-404__hud-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.storm-404__hud-title {
    margin: 0 0 12px;
    font-size: 24px;
}

.storm-404__hud-copy {
    margin: 0;
    color: rgba(245, 240, 230, 0.7);
}

.storm-404__hud-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.storm-404__hud-button {
    border: none;
    background: linear-gradient(120deg, #f5c16b, #f98960);
    color: #0f141a;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-decoration: none;
}

.storm-404__hud-button.is-link {
    background: transparent;
    border: 1px solid rgba(245, 240, 230, 0.3);
    color: #f5f0e6;
}

.storm-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    pointer-events: none;
    mix-blend-mode: screen;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 991px) {
    .storm-404__nav {
        padding: 24px 28px;
    }

    .storm-404__actions {
        display: none;
    }

    .storm-404__zeus {
        left: 50%;
        width: min(180px, 44vw);
        opacity: 0.9;
    }

    .storm-target {
        width: 76px;
        height: 76px;
    }

    .storm-404__pull {
        bottom: 10%;
    }

    .storm-404__bolt {
        width: clamp(60px, 10vw, 100px);
        height: clamp(140px, 28vw, 210px);
    }
}

@media screen and (max-width: 479px) {
    .storm-404 {
        min-height: 34em;
    }

    .storm-404__zeus {
        display: none;
    }

    .storm-target {
        width: 64px;
        height: 64px;
    }
}

body.storm-404-page .global-nav,
body.storm-404-page .footer {
    display: none;
}
body.storm-404-page .sticky-fillout-cta,
body.storm-404-page .sticky-getter-cta,
body.storm-404-page [data-sticky-getter],
body.storm-404-page .getter-done-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.storm-404__sea {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.storm-404__wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    animation: wave-scroll linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.storm-404__wave-svg svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Wave layer 1 - Back (slowest, highest position) */
.storm-404__wave-svg--1 {
    bottom: 45%;
    height: 55%;
    animation-duration: 30s;
}

/* Wave layer 2 */
.storm-404__wave-svg--2 {
    bottom: 35%;
    height: 65%;
    animation-duration: 25s;
    animation-name: wave-scroll-reverse;
}

/* Wave layer 3 */
.storm-404__wave-svg--3 {
    bottom: 25%;
    height: 75%;
    animation-duration: 20s;
}

/* Wave layer 4 */
.storm-404__wave-svg--4 {
    bottom: 12%;
    height: 88%;
    animation-duration: 15s;
    animation-name: wave-scroll-reverse;
}

/* Wave layer 5 - Front (fastest, lowest position) */
.storm-404__wave-svg--5 {
    bottom: 0;
    height: 100%;
    animation-duration: 12s;
}

@keyframes wave-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes wave-scroll-reverse {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.storm-404__trees {
    bottom: -12px;
    z-index: 5;
    opacity: 0.9;
}

.storm-target--ship {
    width: 120px;
    height: 84px;
    transform-origin: 50% 70%;
    animation: storm-float 4.2s ease-in-out infinite;
}

.storm-target--ship:nth-child(2) {
    animation-delay: -1.2s;
}
.storm-target--ship:nth-child(3) {
    animation-delay: -2.1s;
}
.storm-target--ship:nth-child(4) {
    animation-delay: -0.6s;
}
.storm-target--ship:nth-child(5) {
    animation-delay: -1.8s;
}

@keyframes storm-float {
    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0) rotate(-2deg);
    }
    50% {
        transform: translate(-50%, -50%) translateY(8px) rotate(2deg);
    }
}

@media screen and (max-width: 991px) {
    .storm-target--ship {
        width: 96px;
        height: 68px;
    }
}

@media screen and (max-width: 479px) {
    .storm-target--ship {
        width: 82px;
        height: 58px;
    }
}

/* ===========================================
   REDUCED MOTION & MOBILE PERFORMANCE
   =========================================== */

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .rain,
    .lightning-canvas,
    .lightning-bolt,
    .trail-wrap,
    .cursor-trail {
        display: none !important;
    }

    .parallax-y img,
    .parallax-x img {
        animation: none !important;
        transform: translateY(0) translateX(0) !important;
    }

    .viking-ship {
        animation: none !important;
    }

    .process-timeline__bolt,
    .process-timeline__glow {
        animation: none !important;
    }

    /* Keep intro logo visible but disable scroll animation */
    .intro .icon-new {
        animation: none !important;
        background: var(--color-black, var(--color-black-hex)) !important;
    }
}

/* Mobile-specific performance optimizations */
@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    /* Keep intro logo visible on mobile */
    .intro .icon-new {
        animation: none !important;
        background: var(--color-black, var(--color-black-hex)) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Disable cursor trail on touch devices */
    .trail-wrap,
    .trail-list,
    .trail-item {
        display: none !important;
    }

    /* Simplify parallax on mobile - disable animation but keep stacking */
    .parallax-y img,
    .parallax-x img {
        animation: none !important;
        transform: translateY(0) translateX(0) !important;
    }

    .frame.parallax-y,
    .frame.parallax-x {
        overflow: hidden !important;
    }

    /* Simplify ship animation */
    .viking-ship {
        animation: none !important;
        transform: translate(-50%, -50%) !important;
        left: 50% !important;
        top: 50% !important;
    }

    /* Reduce process timeline animations */
    .process-timeline__bolt {
        animation: none !important;
    }

    .process-timeline__glow {
        animation: none !important;
        opacity: 0.5 !important;
    }

    .process-step__icon-splash {
        animation: none !important;
    }

    /* Simplify button hover effects */
    .btn-custom::before,
    .btn-custom::after {
        transition-duration: 0.1s !important;
    }

    /* Reduce icon floating animations */
    .process-step__icon {
        animation: none !important;
    }

    /* Simplify water ripple overlay animations */
    .ripple-cta .overlay-inner {
        transform: none !important;
    }

    .ripple-cta .title span {
        transform: none !important;
        transition: none !important;
    }

    /* Reduce 404 storm animations */
    .storm-404__wave-svg {
        animation-duration: 60s !important;
    }

    .storm-target--ship {
        animation: none !important;
    }
}

/* Extra aggressive optimizations for very small screens */
@media (max-width: 480px) {
    /* Further reduce animation complexity */
    .process-step__body {
        transition: none !important;
    }

    .services-tabs__panel {
        transition: none !important;
    }

    /* Disable WebGL-heavy effects on very small devices */
    canvas#pool {
        filter: none !important;
    }
}
