@charset "UTF-8";

/* ========================================
   Workページ
======================================== */

.work-main {
    overflow: hidden;
    color: #ffffff;
    background: #050505;
}


/* ========================================
   Hero
======================================== */

.work-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 100vh;

    padding:
        calc(var(--header-height) + 80px)
        40px
        100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 30%,
            rgb(36 233 255 / 16%),
            transparent 30%
        ),
        radial-gradient(
            circle at 82% 58%,
            rgb(255 143 216 / 13%),
            transparent 32%
        ),
        radial-gradient(
            circle at 62% 12%,
            rgb(184 156 255 / 12%),
            transparent 25%
        ),
        #050505;
}

.work-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgb(255 255 255 / 4%) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgb(255 255 255 / 4%) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 95%
        );

    animation: workGridMove 16s linear infinite;
}

@keyframes workGridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}

.work-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;

    width: min(1200px, 100%);
    margin: 0 auto;
}


/* Hero文章 */

.work-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 8px 18px;

    border: 1px solid rgb(36 233 255 / 55%);
    border-radius: 999px;

    color: #24e9ff;
    background: rgb(36 233 255 / 6%);

    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.25em;

    box-shadow:
        0 0 18px rgb(36 233 255 / 10%);
}

.work-hero-label::before {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ff8fd8;

    box-shadow:
        0 0 8px #ff8fd8,
        0 0 16px rgb(255 143 216 / 60%);

    content: "";
}
/* PCでは「お仕事について」を1行にする */
@media screen and (min-width: 769px) {

    .work-hero-title {
        font-size: clamp(2.5rem, 4.5vw, 5rem);
        white-space: nowrap;
    }


.work-hero-title {
    margin-top: 30px;

    color: #ffffff;

    font-size: clamp(3.4rem, 7vw, 6.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.04em;

    text-shadow:
        0 0 10px rgb(36 233 255 / 45%),
        0 0 30px rgb(36 233 255 / 22%),
        0 0 60px rgb(184 156 255 / 15%);
}
}
.work-hero-catch {
    margin-top: 36px;

    color: #ffffff;

    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    font-weight: 800;
    line-height: 1.7;
}

.work-hero-catch span {
    color: #ff8fd8;

    text-shadow:
        0 0 1px #fff,
        0 0 30px #ff8fd8,
        0 0 70px rgb(255 143 216 / 40%);
}

.work-hero-text {
    max-width: 650px;

    margin-top: 30px;

    color: rgb(255 255 255 / 72%);

    font-size: 1.05rem;
    line-height: 2;
}

.work-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    min-width: 250px;

    margin-top: 36px;
    padding: 16px 24px;

    border: 1px solid rgb(36 233 255 / 45%);
    border-radius: 999px;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgb(36 233 255 / 10%),
            rgb(184 156 255 / 9%)
        );

    font-weight: 900;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.work-hero-button:hover {
    transform: translateY(-4px);

    border-color: #ff8fd8;

    box-shadow:
        0 0 22px rgb(36 233 255 / 14%),
        0 0 28px rgb(255 143 216 / 10%);
}


/* ========================================
   Heroモニター
======================================== */

.work-hero-visual {
    position: relative;

    display: grid;
    place-items: center;

    width: min(520px, 100%);
    aspect-ratio: 1;

    margin-left: auto;
}

.work-monitor {
    position: relative;
    z-index: 2;

    width: 78%;

    animation:
        workMonitorFloat 5s ease-in-out infinite;
}

.work-monitor-screen {
    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border:
        2px solid rgb(36 233 255 / 55%);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #11182a,
            #07090f
        );

    box-shadow:
        0 0 28px rgb(36 233 255 / 20%),
        0 0 55px rgb(184 156 255 / 14%),
        inset 0 0 35px rgb(36 233 255 / 5%);
}

.work-monitor-screen::before {
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 4px,
            rgb(255 255 255 / 3%) 5px
        );

    content: "";
}

.work-monitor-stand {
    width: 34%;
    height: 60px;

    margin: 0 auto;

    border-bottom:
        4px solid rgb(36 233 255 / 45%);

    background:
        linear-gradient(
            to bottom,
            rgb(36 233 255 / 14%),
            transparent
        );

    clip-path:
        polygon(
            35% 0,
            65% 0,
            82% 100%,
            18% 100%
        );
}

.work-code-line {
    position: absolute;
    left: 12%;

    height: 7px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );

    box-shadow:
        0 0 10px rgb(36 233 255 / 30%);
}

.work-code-line-01 {
    top: 18%;
    width: 48%;
}

.work-code-line-02 {
    top: 29%;
    width: 68%;
}

.work-code-line-03 {
    top: 40%;
    width: 36%;
}

.work-play-icon {
    position: absolute;
    top: 58%;
    left: 50%;

    display: grid;
    place-items: center;

    width: 72px;
    height: 72px;

    border:
        1px solid rgb(255 143 216 / 60%);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgb(255 143 216 / 12%);

    font-size: 1.5rem;

    box-shadow:
        0 0 20px rgb(255 143 216 / 20%);

    transform: translate(-50%, -50%);

    animation:
        workPlayPulse 2s ease-in-out infinite;
}

@keyframes workMonitorFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

@keyframes workPlayPulse {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.08);
    }
}


/* 浮遊ワード */

.work-floating-word {
    position: absolute;
    z-index: 4;

    padding: 9px 15px;

    border:
        1px solid rgb(255 255 255 / 15%);

    border-radius: 999px;

    background:
        rgb(5 5 8 / 76%);

    backdrop-filter: blur(10px);

    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;

    box-shadow:
        0 10px 25px rgb(0 0 0 / 28%);
}

.work-floating-word-01 {
    top: 12%;
    right: 3%;
    color: #24e9ff;
}

.work-floating-word-02 {
    bottom: 20%;
    left: 0;
    color: #ff8fd8;
}

.work-floating-word-03 {
    top: 28%;
    left: 3%;
    color: #b89cff;
}

.work-floating-word-04 {
    right: 6%;
    bottom: 8%;
    color: #ffffff;
}


/* スクロール */

.work-scroll {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    color: rgb(255 255 255 / 52%);

    font-size: 0.64rem;
    letter-spacing: 0.22em;

    transform: translateX(-50%);
}

.work-scroll span:last-child {
    color: #24e9ff;
    font-size: 1.4rem;

    animation:
        workScrollMove 1.5s ease-in-out infinite;
}

@keyframes workScrollMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* ========================================
   共通セクション
======================================== */

.work-section {
    position: relative;

    padding: 120px 40px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgb(36 233 255 / 6%),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgb(255 143 216 / 6%),
            transparent 28%
        ),
        #050505;
}

.work-section:nth-of-type(even) {
    background:
        linear-gradient(
            180deg,
            rgb(255 255 255 / 2%),
            transparent
        ),
        #08080d;
}

.work-section-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
}


/* 見出し */

.work-heading {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-bottom: 65px;
}

.work-heading::before {
    width: 60px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );

    box-shadow:
        0 0 10px rgb(36 233 255 / 45%);

    content: "";
}

.work-heading-number {
    color: rgb(255 255 255 / 12%);

    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1;
}

.work-heading-en {
    margin-bottom: 8px;

    color: #24e9ff;

    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.28em;
}

.work-heading-ja {
    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 900;
    line-height: 1.3;

    text-shadow:
        0 0 10px rgb(36 233 255 / 22%),
        0 0 26px rgb(184 156 255 / 15%);
}


/* ========================================
   仕事内容カード
======================================== */

.work-category-grid {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.work-category-card {
    position: relative;

    min-height: 390px;

    padding: 34px 30px;

    overflow: hidden;

    border:
        1px solid rgb(255 255 255 / 10%);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );

    box-shadow:
        0 20px 55px rgb(0 0 0 / 32%);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
        text-align: center;
}

.work-category-card::before {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );

    content: "";

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform 0.4s ease;
}

.work-category-card:hover {
    transform:
        translateY(-9px);

    border-color:
        rgb(36 233 255 / 35%);

    box-shadow:
        0 28px 70px rgb(0 0 0 / 42%),
        0 0 26px rgb(36 233 255 / 12%);
}

.work-category-card:hover::before {
    transform:
        scaleX(1);
}

.work-category-icon {
    display: grid;
    place-items: center;

    width: 66px;
    height: 66px;
    margin-right: auto;
    margin-left: auto;

    border:
        1px solid rgb(36 233 255 / 30%);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgb(36 233 255 / 12%),
            rgb(255 143 216 / 8%)
        );

    font-size: 1.8rem;
}

.work-category-label {
    margin-top: 24px;

    color: #ff8fd8;

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.work-category-card h3 {
    margin-top: 8px;

    color: #ffffff;

    font-size: 1.7rem;
    font-weight: 900;
}

.work-category-card > p:not(.work-category-label) {
    margin-top: 18px;

    color:
        rgb(255 255 255 / 68%);

    line-height: 1.9;
}

.work-category-card ul {
    display: grid;
    gap: 10px;

    margin-top: 22px;
}

.work-category-card li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: relative;

    padding-left: 0;

    color:
        rgb(255 255 255 / 76%);
}

.work-category-card li::before {
    position: absolute;
    left: 0;

    color: #24e9ff;

    content: "▶";

    font-size: 0.7rem;

    text-shadow:
        0 0 7px #24e9ff;
}


/* ========================================
   アプリケーション
======================================== */
/* PCではアプリ紹介文を1行にする */
@media screen and (min-width: 769px) {

    .work-app-lead {
        max-width: 100%;
    }

.work-app-lead,
.work-program-lead {
    max-width: 100%;

    margin:
        -25px auto 55px;

    color:
        rgb(255 255 255 / 68%);

    text-align: center;
    line-height: 2;
    white-space: nowrap;
}}

.work-app-grid {
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;
}

.work-app-card {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 315px;

    padding: 28px 20px;

    border:
        1px solid rgb(255 255 255 / 10%);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );

    text-align: center;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.work-app-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgb(36 233 255 / 35%);

    box-shadow:
        0 0 26px rgb(36 233 255 / 12%),
        0 0 34px rgb(255 143 216 / 8%);
}

.work-app-logo {
    display: grid;
    place-items: center;

    width: 72px;
    height: 72px;

    border-radius: 18px;

    font-size: 1.4rem;
    font-weight: 900;

    box-shadow:
        0 0 18px rgb(36 233 255 / 10%);
}

.work-app-canva {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #00c4cc,
            #7d2ae8
        );
}

.work-app-capcut {
    color: #050505;
    background: #ffffff;
}

.work-app-premiere {
    color: #d9a8ff;
    background: #24113b;
}

.work-app-illustrator {
    color: #ff9a00;
    background: #2c1400;
}

.work-app-photoshop {
    color: #31a8ff;
    background: #001e36;
}

.work-app-card h3 {
    margin-top: 22px;

    color: #ffffff;

    font-size: 1.15rem;
    font-weight: 900;
}

.work-app-card p {
    margin-top: 13px;

    color:
        rgb(255 255 255 / 64%);

    font-size: 0.86rem;
    line-height: 1.75;
}

.work-app-level {
    display: inline-flex;

    margin-top: 18px;
    padding: 6px 12px;

    border:
        1px solid rgb(36 233 255 / 30%);

    border-radius: 999px;

    color: #24e9ff;

    font-size: 0.7rem;
    font-weight: 900;
}

.work-app-note {
    margin-top: 40px;

    color:
        rgb(255 255 255 / 56%);

    text-align: center;
}


/* ========================================
   学び方
======================================== */

.work-learning-flow {
    display: grid;
    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;
    gap: 14px;
}

.work-learning-step {
    min-height: 300px;

    padding: 28px 22px;

    border:
        1px solid rgb(255 255 255 / 10%);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );

    text-align: center;
}

.work-learning-number {
    color: #24e9ff;

    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.work-learning-icon {
    display: grid;
    place-items: center;

    width: 62px;
    height: 62px;

    margin: 22px auto 0;

    border:
        1px solid rgb(255 143 216 / 32%);

    border-radius: 50%;

    background:
        rgb(255 143 216 / 8%);

    font-size: 1.6rem;
}

.work-learning-step h3 {
    margin-top: 22px;

    color: #ffffff;

    font-size: 1.15rem;
    font-weight: 900;
}

.work-learning-step p {
    margin-top: 14px;

    color:
        rgb(255 255 255 / 64%);

    font-size: 0.88rem;
    line-height: 1.8;
}

.work-learning-arrow {
    color: #24e9ff;

    font-size: 1.5rem;

    text-shadow:
        0 0 8px #24e9ff;
}


/* ========================================
   1日のプログラム
======================================== */

.work-program-board {
    position: relative;

    display: grid;
    grid-template-columns:
        repeat(6, 1fr);

    gap: 12px;

    padding: 48px 20px 30px;

    border:
        1px solid rgb(36 233 255 / 22%);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );

    box-shadow:
        0 25px 65px rgb(0 0 0 / 35%),
        0 0 26px rgb(36 233 255 / 8%);
}

.work-program-line {
    position: absolute;
    top: 87px;
    right: 7%;
    left: 7%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #24e9ff,
            #ff8fd8,
            #b89cff
        );

    box-shadow:
        0 0 10px rgb(36 233 255 / 50%);
}

.work-program-item {
    position: relative;

    text-align: center;
}

.work-program-item time {
    color: #ffffff;

    font-size: 1.1rem;
    font-weight: 900;
}

.work-program-dot {
    position: relative;
    z-index: 2;

    width: 14px;
    height: 14px;

    margin: 22px auto;

    border: 3px solid #050505;
    border-radius: 50%;

    background: #24e9ff;

    box-shadow:
        0 0 8px #24e9ff,
        0 0 16px rgb(36 233 255 / 60%);
}

.work-program-content {
    min-height: 220px;

    padding: 22px 14px;

    border:
        1px solid rgb(255 255 255 / 9%);

    border-radius: 16px;

    background:
        rgb(255 255 255 / 3%);
}

.work-program-icon {
    display: block;

    font-size: 1.5rem;
}
/* PC版の1日プログラムのアイコンを大きくする */
@media screen and (min-width: 769px) {

    .work-program-icon {
        font-size: 2.4rem;
    }

}
.work-program-content h3 {
    margin-top: 15px;

    color: #ffffff;

    font-size: 1rem;
    font-weight: 900;
}

.work-program-content p {
    margin-top: 12px;

    color:
        rgb(255 255 255 / 62%);

    font-size: 0.78rem;
    line-height: 1.7;
}


/* ========================================
   身につく力
======================================== */

.work-skill-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.work-skill-card {
    min-height: 260px;

    padding: 28px 24px;

    border:
        1px solid rgb(255 255 255 / 10%);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgb(255 255 255 / 4%),
            rgb(255 255 255 / 1%)
        );

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.work-skill-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgb(36 233 255 / 32%);

    box-shadow:
        0 0 24px rgb(36 233 255 / 10%);
}

.work-skill-number {
color: #24e9ff;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.work-skill-card h3 {
    margin-top: 24px;

    color: #ffffff;

    font-size: 1.25rem;
    font-weight: 900;
}

.work-skill-card p {
    margin-top: 14px;

    color:
        rgb(255 255 255 / 64%);

    line-height: 1.8;
}


/* ========================================
   CTA
======================================== */

.work-cta {
    position: relative;

    padding: 130px 40px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 40%,
            rgb(36 233 255 / 16%),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 60%,
            rgb(255 143 216 / 14%),
            transparent 30%
        ),
        #050505;
}

.work-cta-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgb(255 255 255 / 3%) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgb(255 255 255 / 3%) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}

.work-cta-inner {
    position: relative;
    z-index: 2;

    width: min(900px, 100%);

    margin: 0 auto;

    text-align: center;
}

.work-cta-label {
    color: #24e9ff;

    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.3em;
}

.work-cta h2 {
    margin-top: 22px;

    color: #ffffff;

    font-size: clamp(2.2rem, 5vw, 4.3rem);
    font-weight: 900;
    line-height: 1.4;

    text-shadow:
        0 0 12px rgb(36 233 255 / 22%),
        0 0 30px rgb(255 143 216 / 16%);
}

.work-cta-inner > p:not(.work-cta-label) {
    margin-top: 28px;

    color:
        rgb(255 255 255 / 70%);

    line-height: 2;
}

.work-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;

    margin-top: 42px;
}

.work-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    min-width: 250px;

    padding: 17px 24px;

    border-radius: 999px;

    font-weight: 900;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.work-cta-primary {
    color: #050505;

    background:
        linear-gradient(
            135deg,
            #24e9ff,
            #9df7ff
        );
}

.work-cta-secondary {
    border:
        1px solid rgb(255 143 216 / 55%);

    color: #ffffff;

    background:
        rgb(255 143 216 / 9%);
}

.work-cta-button:hover {
    transform:
        translateY(-5px);
}


/* ========================================
   スクロールアニメーション
======================================== */

.reveal-work {
    opacity: 0;

    transform:
        translateY(55px);

    filter:
        blur(5px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease,
        filter 0.9s ease;
}

.reveal-work.is-visible {
    opacity: 1;

    transform:
        translateY(0);

    filter:
        blur(0);
}

.work-hero-content {
    opacity: 0;

    transform:
        translateX(-60px);

    filter:
        blur(8px);

    animation:
        workHeroContentAppear
        1s ease
        0.3s
        forwards;
}

.work-hero-visual {
    opacity: 0;

    transform:
        scale(0.84)
        rotate(4deg);

    filter:
        blur(9px);

    animation:
        workHeroVisualAppear
        1.15s ease
        0.55s
        forwards;
}

@keyframes workHeroContentAppear {

    to {
        opacity: 1;

        transform:
            translateX(0);

        filter:
            blur(0);
    }
}

@keyframes workHeroVisualAppear {

    to {
        opacity: 1;

        transform:
            scale(1)
            rotate(0);

        filter:
            blur(0);
    }
}

.work-category-card:nth-child(2),
.work-app-card:nth-child(2),
.work-learning-step:nth-of-type(2),
.work-skill-card:nth-child(2) {
    transition-delay: 0.1s;
}

.work-category-card:nth-child(3),
.work-app-card:nth-child(3),
.work-learning-step:nth-of-type(3),
.work-skill-card:nth-child(3) {
    transition-delay: 0.2s;
}

.work-category-card:nth-child(4),
.work-app-card:nth-child(4),
.work-learning-step:nth-of-type(4),
.work-skill-card:nth-child(4) {
    transition-delay: 0.3s;
}

.work-app-card:nth-child(5) {
    transition-delay: 0.4s;
}
.work-cta-button span:last-child {
    transition: transform 0.3s ease;
}

.work-cta-button:hover span:last-child {
    transform: translateX(6px);
}