body {
    /* margin-top: 190px; */
    background-color: transparent;
}

section {
    /* min-height: 75vh; */
    margin: 10vh 0;
    width: 100%;
}

.header-index-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100%; */
    padding: var(--margin-y) var(--margin-x);
    margin-top: 25px;
}

.hero {
    position: relative;
    text-align: center;
    height: 85vh;
    margin-top: 24vh;
}

.hero-image {
    width: 250px;
    z-index: 100;
    background-color: var(--color-primary);
}

.hero-title-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-title-icon {
    height: 81px;
}

.hero-side {
    position: absolute;
    top: 20%;
    left: calc(50% - 175px - 150px);
    align-items: left;
    justify-content: left;
    text-align: left;
    gap: 10px;
    padding: 0;
    padding-left: 10px;
    border-left: 4px solid var(--color-primary);
    width: 150px;
}

.hero-side-right {
    position: absolute;
    top: 51%;
    left: calc(50% + 140px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    padding-left: 10px;
    width: 150px;
}

.hero-side-right > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.hero-side-right p {
    margin: 0;
    font-size: 14px;
}

.hero-side-image {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-side-title {
    color: var(--color-background);
    background-color: var(--color-foreground);
    padding: 5px 10px;
    margin: 0;
    margin-bottom: 10px;
    width: auto;
    display: inline-block;
    flex: 0 0 auto;
    align-self: flex-start;
}

.hero-title {
    font-size: 64px;
    font-family: 'GajrajOne', sans-serif;
    margin: 0;
    margin-top: -20px;
    margin-bottom: -25px;
    color: var(--color-foreground);
}

.hero-side-description {
    line-height: 1.3;
}

.parallax-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
}

.hero-fish-icon {
    position: absolute;
    top: 14%;
    left: 38%;
    z-index: 10;
    /* transform: rotate(110deg); */
}

.leaf-1 {
    width: 200px;
    height: 200px;
    top: 41%;
    left: 31%;
}

.leaf-2 {
    width: 100px;
    height: 100px;
    /* background-image: url('/assets/images/main/lotus-leaf-2.svg'); */
    background-image: none;
    background-color: var(--color-green-secondary);
    border-radius: 50%;
    top: 45%;
    left: 22%;
}

.leaf-3 {
    width: 68px;
    height: 68px;
    top: 40%;
    left: 26%;
}

.leaf-4 {
    width: 70px;
    height: 70px;
    top: 31%;
    right: 19%;
    background-image: url('../assets/images/main/lotus-leaf-2.svg');
}

.leaf-5 {
    width: 95px;
    height: 95px;
    top: 23%;
    right: 21%;
}

.leaf-6 {
    width: 70px;
    height: 70px;
    top: 0%;
    left: 12%;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: max(70vw, 900px);
    /* padding: var(--margin-x) var(--margin-y); */
}

.content p {
    line-height: 1.2;
}

#project {
    /* margin-bottom: 0; */
    margin-top: 20px;
    scroll-margin-top: 100px;
}

.content-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    margin-bottom: 80px;
}

.content-header button {
    margin: auto 0;
}

.content-text {
    font-size: 16px;
    margin-bottom: 20px;
}

#leaf-decoration-button {
    position: relative;
}

.leaf-decoration {
    position: absolute;
    top: 30px;
    right: -40px;
    rotate: -30deg;
    /* transform: translateY(-50%); */
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: -1;
}


.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.projects-card {
    display: flex;
    flex-direction: column;
}

.projects-item {
    display: block;
    background-color: var(--color-foreground);
    width: 100%;
    /* width: 500px;  */
    /* 540 */
    /* height: 280px; */
    aspect-ratio: 16/9;
    overflow: hidden;
    /* position: relative; */
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.projects-item.hide {
    opacity: 0;
    transform: scale(0.95);
}

.projects-item.show {
    opacity: 1;
    transform: scale(1);
}

.projects-item-content {
    padding: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    /* position: relative; */
    /* z-index: 2; */
}

.projects-item img, .projects-item video {
    transform: translateY(-100%) translateX(0);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* position: absolute; */
    top: 0;
    left: 0;
    z-index: 1;
}

.project-meta-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray);
    margin: 0 0 6px 0;
}

.project-meta-tags {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-meta-tag {
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--color-green-primary);
    background-color: transparent;
    color: var(--color-green-primary);
}
.projects-item:hover {
    cursor: pointer;
}

.projects-item.swipe-left:hover img, .projects-item.swipe-left:hover video {
    transform: translateY(-100%) translateX(100%);
}
.projects-item.swipe-right:hover img, .projects-item.swipe-right:hover video {
    transform: translateY(-100%) translateX(-100%);
}
.projects-item.swipe-up:hover img, .projects-item.swipe-up:hover video {
    transform: translateY(0px) translateX(0);
}

.projects-item.swipe-down:hover img, .projects-item.swipe-down:hover video {
    transform: translateY(-200%) translateX(0);
}

.projects-item h2 {
    font-size: 36px;
    color: var(--color-background);
}

.projects-item h3 {
    /* font-size: 14px; */
    color: var(--color-background);
}

.projects-item p {
    /* font-size: 14px; */
    color: var(--color-background);
}

.coming-soon-badge {
    position: absolute;
    top: 30px;
    right: -40px;
    background-color: var(--color-green-primary);
    color: var(--color-foreground);
    padding: 6px 40px;
    font-size: 12px;
    letter-spacing: 1px;
    z-index: 10;
    transform: rotate(45deg);
    transform-origin: center;
}

.projects-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

.games-item-image {
    width: 100%;
}

#play {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.also-do-section {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.also-do-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: var(--color-foreground);
}

.also-do-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.also-do-btn {
    text-decoration: none;
    border: 1px solid var(--color-foreground);
    color: var(--color-foreground);
    padding: 8px 24px;
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease;
}

.also-do-btn:hover,
.also-do-btn.active {
    background: var(--color-foreground);
    color: var(--color-background);
}

/* Preview container */
.also-do-preview {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.also-do-preview.open {
    grid-template-rows: 1fr;
}

.also-do-preview > * {
    overflow: hidden;
}

/* Each tag panel */
.also-do-panel {
    display: none;
    flex-direction: row;
    gap: 12px;
    padding-top: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.also-do-panel::-webkit-scrollbar { display: none; }

.also-do-panel.visible {
    display: flex;
}

/* Individual preview items */
.also-do-item {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

.also-do-item-wrapper {
    flex-shrink: 0;
    height: 250px;
    overflow: hidden;
    background-color: var(--color-foreground);
    cursor: pointer;
    position: relative;
}

.also-do-item-wrapper .also-do-item {
    height: 100%;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.also-do-item-wrapper:nth-child(n+5) {
    display: none;
}

.also-do-panel.visible .also-do-item {
    opacity: 1;
    transform: translateY(0);
}

/* stagger each wrapper */
.also-do-panel.visible .also-do-item-wrapper:nth-child(1) .also-do-item { transition-delay: 0.04s; }
.also-do-panel.visible .also-do-item-wrapper:nth-child(2) .also-do-item { transition-delay: 0.09s; }
.also-do-panel.visible .also-do-item-wrapper:nth-child(3) .also-do-item { transition-delay: 0.14s; }
.also-do-panel.visible .also-do-item-wrapper:nth-child(4) .also-do-item { transition-delay: 0.19s; }
.also-do-panel.visible .also-do-item-wrapper:nth-child(5) .also-do-item { transition-delay: 0.24s; }

.play-container {
    column-count: 3;
    column-gap: 20px;
    margin-bottom: 2vh;
}

.play-item-wrapper {
    display: block;
    /* background-color: var(--color-foreground); */
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    break-inside: avoid;
    position: relative;
    cursor: pointer;
}

a.play-item-wrapper {
    display: block;
    margin-bottom: 20px;
}

.play-item-wrapper.swipe {
    background-color: var(--color-foreground);
}

.play-item {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.play-item-wrapper:hover {
    cursor: pointer;
}

.play-item-wrapper.swipe.swipe-left:hover .play-item {
    transform: translateX(100%);
}

.play-item-wrapper.swipe.swipe-right:hover .play-item {
    transform: translateX(-100%);
}

.play-item-wrapper.swipe.swipe-up:hover .play-item {
    transform: translateY(100%);
}

.play-item-wrapper.swipe.swipe-down:hover .play-item {
    transform: translateY(-100%);
}

.about-container {
    background-color: transparent;
    margin-bottom: 0;
}

.about-section {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 10px;
    background-color: transparent;
    
}

.about-item-content {
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: transparent;

}
.about-item-content h1 {
    margin: 0;
    
}

.about-item-button {
    margin-top: 40px;
}

.about-item-image {
    width: 30vw;
    object-fit: cover;
    max-height: 80vh;
}

#about-title1 {
    display: none;
}

#about-title2 {
    display: block;
}

/* Experience List Styles */
.experience-list {
    width: 100%;
    margin-top: 60px;
    padding: 0 40px;
}

.experience-list h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--color-foreground);
}

.experience-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.experience-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-item:hover {
    padding-left: 10px;
    background-color: rgba(0, 0, 0, 0.02);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.experience-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--color-foreground);
}

.experience-date {
    font-size: 14px;
    color: var(--color-gray);
    font-weight: 400;
}

.experience-role {
    font-size: 16px;
    color: var(--color-gray);
    margin: 0;
    font-weight: 400;
}


.head-email h1 {
    font-size: 24px;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .content {
        width: calc(100vw - 2 * var(--margin-x));
        max-width: 900px;
    }
}

@media (max-width: 768px) {

    button {
        font-size: 12px;
        padding: 7px 14px;
    }

    .work-experience-section .content-header button {
        display: none;
    }

    .hero {
        height: 55vh;
        margin-top: 18vh;
        margin-bottom: 18vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title-icon {
        height: 45px;
    }

    .hero-image {
        width: 180px;
    }

    .hero-side {
        position: static;
        margin: 40px auto 20px;
        width: 90%;
        max-width: 300px;
        border-left: none;
        padding-left: 0;
        text-align: center;
    }

    .hero-side-right {
        display: none;
    }

    .hero-side-title {
        display: none;
    }

    .hero-title-carol {
        margin-top: 0px;
    }

    .hero-title-container {
        align-items: center;
    }

    .parallax-leaves {
        display: block;
        height: 70vh;
    }

    .hero-fish-icon {
        left: 30%;
    }

    .leaf-1 { top: 44%; left: -15%; }
    .leaf-2 { display: none; }
    .leaf-3 { display: none; }
    .leaf-4 { top: 30%; right: -4%; left: auto; }
    .leaf-5 { display: none; }
    .leaf-6 { display: none; }

    .content {
        width: calc(100vw - 2 * var(--margin-x));
        max-width: 900px;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    #play .content-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    /* .leaf-decoration {
        display: none;
    } */

    .projects-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-item {
        display: flex;
        flex-direction: column;
        background-color: transparent;
        aspect-ratio: unset;
        overflow: visible;
    }

    .projects-item img,
    .projects-item video {
        transform: none !important;
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
        order: -1;
        border-radius: 0;
    }

    .projects-item-content {
        width: 100%;
        height: auto;
        padding: 12px 0 0 0;
        position: static;
        background-color: transparent;
    }

    .work-card-img {
        display: block !important;
    }

    .projects-item .project-meta {
        display: block;
        margin-bottom: 0;
        margin-top: 8px;
        order: 1;
    }

    .projects-item .project-meta-tags {
        gap: 6px;
    }

    .projects-item .project-meta-tag {
        font-size: 11px;
        padding: 3px 8px;
    }

    .projects-item h3 {
        display: block;
        font-size: 13px;
        color: var(--color-gray);
        font-weight: 400;
        margin: 2px 0 0 0;
    }

    .projects-item h4 {
        display: none;
    }

    .projects-item h2 {
        font-size: 22px;
        color: var(--color-foreground);
        margin: 0;
    }

    .projects-item p {
        color: var(--color-foreground);
        font-size: 14px;
        margin: 6px 0 0 0;
        line-height: 1.4;
    }

    .play-container {
        column-count: 2;
        column-gap: 15px;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .about-item-image {
        width: 100%;
        height: 75vw;
        max-width: none;
        object-fit: cover;
        object-position: center;
        margin-bottom: 30px;
    }

    .about-item-content {
        padding: 0 20px;
    }

    .experience-list {
        padding: 0 20px;
    }

    .experience-header h3 {
        font-size: 18px;
    }

    .experience-date {
        font-size: 12px;
    }

    .experience-role {
        font-size: 14px;
    }

    section {
        margin-top: 10vh;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {

    :root {
        --margin-x: 24px;
    }

    h1 {
        font-size: 32px;
    }

    .hero {
        height: 55vh;
        margin-top: 18vh;
        margin-bottom: 18vh;
    }

    .parallax-leaves {
        display: block;
        height: 70vh;
    }

    .hero-fish-icon {
        left: 13%;
    }

    .leaf-1 { top: 44%; left: -15%; }
    .leaf-2 { display: none; }
    .leaf-3 { display: none; }
    .leaf-4 { top: 30%;  right: -4%; left: auto; }
    .leaf-5 { display: none; }
    .leaf-6 { display: none; }

    .hero-title {
        font-size: 36px;
    }

    .hero-title-carol {
        margin-top: 0px;
    }

    .hero-side {
        margin-top: 40px;
    }

    .hero-side-title {
        display: none;
    }

    .hero-title-icon {
        height: 45px;
    }

    .hero-image {
        width: 180px;
    }

    .content {
        width: calc(100vw - 2 * var(--margin-x));
    }

    .projects-item h2 {
        font-size: 24px;
    }

    .projects-item-content {
        padding: 15px 0px;
    }

    .play-container {
        column-count: 1;
    }

    .about-item-content {
        padding: 0 15px;
    }

    .header-index-container {
        padding: 15px;
    }

    .hero-title-container{
        align-items: center;
    }

    .also-do-panel {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .also-do-item-wrapper {
        width: 100%;
        height: auto;
        max-height: 260px;
    }

    .also-do-item {
        width: 100%;
        height: auto;
    }

    .also-do-item:nth-child(n+5) {
        display: none;
    }

}

/* Root page pinned-scroll experience styles. */
html,
body,
#__nuxt {
    margin: 0;
    padding: 0;
}

.main-header {
    position: fixed;
    z-index: 20;
    --header-bg-opacity: 1 !important;
}

.main-content {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.section1 {
    position: absolute;
    inset: 0;
    will-change: transform, opacity;
}

.section1-inner {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.section2 {
    position: absolute;
    inset: 0;
    z-index: 8;
    height: 100vh;
    min-height: 100vh;
    display: block;
    padding: 130px 48px 0 0;
    background-color: var(--color-background);
    color: var(--color-foreground);
    text-align: center;
    overflow: hidden;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity, visibility;
}

.section2.is-active {
    opacity: 1;
    visibility: visible;
}

.section2-heading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 0;
    text-align: left;
    opacity: 1;
    transform: none;
}

.section2-heading h2 {
    margin: 0;
    color: var(--color-foreground);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.08;
}

.section2-heading p {
    margin: 8px 0 0;
    max-width: 640px;
    color: var(--color-foreground);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.section2-projects {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    height: calc(100vh - 130px);
    overflow: hidden;
}

.section2-projects .projects-container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: max-content;
    gap: 0;
    padding-top: 8vh;
    padding-right: 20vw;
    will-change: transform;
}

.section2-group {
    position: relative;
    flex: 0 0 auto;
}

.section2-group-gap {
    flex: 0 0 450px;
    width: 450px;
    min-width: 450px;
    align-self: stretch;
}

.section2-group-gap--lead {
    flex: 0 0 280px;
    width: 280px;
    min-width: 280px;
}

.section2-group-cards {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    padding-top: 106px;
}

/* .section2-group .section2-heading {
    width: max-content;
    max-width: 640px;
} */

.section2-group .section2-flower-field {
    top: 0;
    bottom: auto;
    height: calc(100vh - 130px - 8vh);
    overflow: visible;
}

.section2-projects .projects-item {
    position: relative;
    z-index: 2;
    flex: 0 0 520px;
    width: 520px;
    min-width: 520px;
}

.section2-projects .projects-item h2 {
    font-size: 24px;
}

.section2-projects .projects-item-content {
    padding: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
}

.section2-projects .project-meta-tag {
    font-size: 11px;
    padding: 3px 8px;
}

.section2-flower-field {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: visible;
}

.section2-flower-field--back {
    z-index: 1;
}

.section2-flower-field--gamification {
    z-index: auto;
}

.section2-flower {
    position: absolute;
    left: var(--flower-left);
    bottom: 0;
    top: auto;
    width: var(--flower-width);
    height: var(--flower-height);
    opacity: 1;
    transform: rotate(var(--flower-tilt));
    transform-origin: 50% 100%;
    overflow: visible;
}

.section2-flower__stem {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 0;
    width: 80px;
    height: calc(100% + var(--flower-stem-extend, 0px));
    transform: translateX(-50%);
    overflow: visible;
}

.section2-flower__stem path {
    fill: none;
    stroke: var(--color-green-secondary);
    stroke-width: 9px;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.section2-flower__head {
    position: absolute;
    top: -20px;
    left: 50%;
    z-index: 1;
    width: var(--flower-head-width);
    height: auto;
    transform: translateX(-50%) rotate(var(--flower-head-rotation));
    transform-origin: center bottom;
}

.section2-flower--top-left {
    --flower-width: 50px;
    --flower-height: 300px;
    --flower-head-width: 52px;
    --flower-head-offset: 36px;
    --flower-stem-extend: 12px;
    --flower-tilt: -3deg;
    --flower-head-rotation: -12deg;
    --flower-left: -82px;
}

.section2-flower--top-right {
    --flower-width: 64px;
    --flower-height: 430px;
    --flower-head-width: 50px;
    --flower-head-offset: 44px;
    --flower-stem-extend: 10px;
    --flower-tilt: 2deg;
    --flower-head-rotation: 12deg;
    --flower-left: -58px;
}

.section2-flower--bottom-left {
    --flower-width: 96px;
    --flower-height: 300px;
    --flower-head-width: 98px;
    --flower-head-offset: 72px;
    --flower-tilt: 1deg;
    --flower-head-rotation: -4deg;
    --flower-left: auto;
    left: auto;
    right: -60px;
}

.section2-flower--bottom-right {
    --flower-width: 160px;
    --flower-height: 420px;
    --flower-head-width: 150px;
    --flower-head-offset: 48px;
    --flower-tilt: -2deg;
    --flower-head-rotation: 3deg;
    --flower-left: auto;
    left: auto;
    right: -140px;
}

/* Gamification group: left bud + lily pad, right pink bud + tall crown */
.section2-group--gamification .section2-flower--top-left {
    --flower-width: 52px;
    --flower-height: 400px;
    --flower-head-width: 58px;
    --flower-head-offset: 36px;
    --flower-tilt: -2deg;
    --flower-head-rotation: 18deg;
    --flower-left: -70px;
    z-index: 1;
}

.section2-group--gamification .section2-flower--top-right {
    --flower-width: 160px;
    --flower-height: 260px;
    --flower-head-width: 190px;
    --flower-head-offset: 48px;
    --flower-tilt: 0deg;
    --flower-head-rotation: 0;
    --flower-left: -70px;
    left: var(--flower-left);
    right: auto;
    z-index: 3;
}

.section2-group--gamification .section2-flower--bottom-left {
    --flower-width: 110px;
    --flower-height: 680px;
    --flower-head-width: 100px;
    --flower-head-offset: 72px;
    --flower-tilt: 2deg;
    --flower-head-rotation: 10deg;
    --flower-left: auto;
    left: auto;
    right: -10px;
    z-index: 1;
}

.section2-group--gamification .section2-flower--bottom-right {
    --flower-width: 56px;
    --flower-height: 380px;
    --flower-head-width: 50px;
    --flower-head-offset: 40px;
    --flower-tilt: 1deg;
    --flower-head-rotation: 14deg;
    --flower-left: auto;
    left: auto;
    right: -60px;
    z-index: 3;
}

.hero {
    height: 100vh;
    will-change: transform;
}

.incoming-leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    will-change: transform;
}

.incoming-statement {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: grid;
    justify-items: center;
    margin: 0;
    pointer-events: none;
    opacity: 0;
    color: var(--color-foreground);
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

.section1.is-active .incoming-statement {
    opacity: 1;
    animation: statement-lift 900ms cubic-bezier(0.2, 0.7, 0.1, 1) 2000ms forwards;
    
}

.incoming-dead-line {
    position: relative;
    display: inline-block;
    transform-origin: center bottom;
}

.section1.is-active .incoming-dead-line {
    animation: dead-line-shrink 900ms cubic-bezier(0.2, 0.7, 0.1, 1) 2000ms forwards;
}

.incoming-dead-title,
.incoming-evolve-title {
    margin: 0;
    white-space: nowrap;
    color: var(--color-foreground);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.08;
}

.incoming-dead-title {
    opacity: 0;
    transform: translate(140px, 18px) scale(0.5);
}

.section1.is-active .incoming-dead-title {
    animation: dead-title-enter 650ms cubic-bezier(0.16, 1, 0.3, 1) 900ms forwards;
}

.incoming-strike {
    position: absolute;
    top: 51%;
    left: -4%;
    width: 108%;
    height: 6px;
    border-radius: 999px;
    background-color: var(--color-primary);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
}

.section1.is-active .incoming-strike {
    animation: strike-across 680ms cubic-bezier(0.65, 0, 0.35, 1) 1120ms forwards;
}

.incoming-evolve-title {
    margin-top: 8px;
    opacity: 0;
    transform: translateY(22px);
}

.section1.is-active .incoming-evolve-title {
    animation: evolve-title-enter 600ms cubic-bezier(0.16, 1, 0.3, 1) 1450ms forwards;
}

.incoming-question-mark {
    position: absolute;
    right: -20px;
    top: 45%;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-foreground);
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
    opacity: 0;
    transform: translate(10px, -50%) scale(0.7) rotate(12deg);
}

.incoming-question-mark:hover {
    background-color: var(--color-primary-dark);
}

.section1.is-active .incoming-question-mark {
    animation: question-pop 520ms cubic-bezier(0.34, 1.56, 0.64, 1) 1650ms forwards;
}

.incoming-question-text {
    margin: 10px 0 0;
    max-width: 520px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
}

.section1.is-active .incoming-question-text {
    animation: question-text-enter 520ms cubic-bezier(0.16, 1, 0.3, 1) 1650ms forwards;
}

.incoming-projects {
    position: absolute;
    top: 56%;
    left: 50%;
    z-index: 5;
    width: max(72vw, 920px);
    max-width: calc(100vw - 48px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 32px);
    will-change: transform, opacity;
}

.section1.is-active .incoming-projects {
    animation: incoming-projects-enter 700ms cubic-bezier(0.16, 1, 0.3, 1) 2050ms forwards;
    pointer-events: auto;
}

.incoming-projects .projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.incoming-projects .projects-item h2 {
    font-size: 26px;
}

.incoming-projects .projects-item-content {
    padding: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
}

.incoming-projects .project-meta-tag {
    font-size: 12px;
    padding: 3px 8px;
}

.project-annotation {
    position: absolute;
    z-index: 6;
    color: var(--color-foreground);
    font-family: 'Gabarito', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.12;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.project-annotation span {
    position: relative;
    z-index: 2;
}

.project-annotation--training {
    top: -84px;
    left: -112px;
    width: 270px;
    height: 86px;
}

.project-annotation--automation {
    top: -78px;
    right: -46px;
    width: 210px;
    text-align: center;
}

.project-annotation--semantic {
    left: -120px;
    bottom: -44px;
    width: 150px;
    padding-top: 54px;
    text-align: center;
}

.project-annotation--integration {
    right: -104px;
    bottom: -62px;
    width: 190px;
    text-align: center;
}

.project-annotation__side-label {
    position: absolute;
    left: 0;
}

.project-annotation__side-label--top {
    top: 8px;
    left: 40px;
}

.project-annotation__side-label--bottom {
    top: 54px;
    left: -68px;
}

.project-annotation__main-label {
    position: absolute;
    top: 9px;
    left: 126px;
    white-space: nowrap;
}

.project-annotation__mark {
    position: absolute;
    inset: 0;
    overflow: visible;
}

.project-annotation__mark path,
.project-annotation__mark ellipse {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.project-annotation__mark--training {
    top: 0;
    left: 18px;
    width: 240px;
    height: 82px;
}

.project-annotation__mark--automation {
    left: 20px;
    top: 14px;
    width: 170px;
    height: 58px;
}

.project-annotation__mark--semantic {
    left: 36px;
    top: -12px;
    width: 70px;
    height: 76px;
}

.project-annotation--semantic span {
    display: block;
    opacity: 0;
    transform: translate(-16px, 10px);
}

.project-annotation__semantic-arrow {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.project-annotation__mark--integration {
    left: 0;
    top: -24px;
    width: 190px;
    height: 66px;
}

.section1.is-active .project-annotation--top {
    animation: project-annotation-enter 320ms cubic-bezier(0.16, 1, 0.3, 1) 2700ms forwards;
}

.section1.is-active .project-annotation--top .project-annotation__mark path,
.section1.is-active .project-annotation--top .project-annotation__mark ellipse {
    animation: project-annotation-draw 560ms ease-in-out 2850ms forwards;
}

.project-annotation--training .project-annotation__side-label {
    opacity: 0;
}

.section1.is-active .project-annotation--training .project-annotation__mark .project-annotation__training-line,
.section1.is-active .project-annotation--training .project-annotation__mark .project-annotation__training-circle {
    animation: none;
}

.section1.is-active .project-annotation--training .project-annotation__mark .project-annotation__training-circle {
    animation: project-annotation-draw 400ms ease-in-out 2850ms forwards;
}

.section1.is-active .project-annotation--training .project-annotation__mark .project-annotation__training-line--top {
    animation: project-annotation-draw 220ms ease-in-out 3180ms forwards;
}

.section1.is-active .project-annotation--training .project-annotation__side-label--top {
    animation: project-annotation-label-enter 140ms ease-out 3420ms forwards;
}

.section1.is-active .project-annotation--training .project-annotation__mark .project-annotation__training-line--bottom {
    animation: project-annotation-draw 220ms ease-in-out 3560ms forwards;
}

.section1.is-active .project-annotation--training .project-annotation__side-label--bottom {
    animation: project-annotation-label-enter 140ms ease-out 3800ms forwards;
}

.incoming-projects.show-bottom-annotations .project-annotation--bottom {
    animation: project-annotation-enter 320ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.incoming-projects.show-bottom-annotations .project-annotation--bottom .project-annotation__mark path,
.incoming-projects.show-bottom-annotations .project-annotation--bottom .project-annotation__mark ellipse {
    animation: project-annotation-draw 560ms ease-in-out 120ms forwards;
}

.incoming-projects.show-bottom-annotations .project-annotation--semantic .project-annotation__mark .project-annotation__semantic-line {
    animation: project-annotation-draw 380ms ease-in-out 120ms forwards;
}

.incoming-projects.show-bottom-annotations .project-annotation--semantic .project-annotation__mark .project-annotation__semantic-arrow {
    animation: project-annotation-draw 220ms ease-in-out 780ms forwards;
}

.incoming-projects.show-bottom-annotations .project-annotation--semantic span {
    animation: project-annotation-label-enter 160ms ease-out 1160ms forwards;
}

.incoming-projects.show-bottom-annotations .project-annotation--integration .project-annotation__mark path {
    animation: none;
}

.incoming-projects.show-bottom-annotations .project-annotation--integration span {
    animation: project-annotation-label-enter 160ms ease-out forwards;
}

.incoming-projects.show-bottom-annotations .project-annotation--integration .project-annotation__mark path {
    animation: project-annotation-draw 560ms ease-in-out 320ms forwards;
}

.section1.is-settled .incoming-statement,
.section1.is-settled .incoming-dead-line,
.section1.is-settled .incoming-dead-title,
.section1.is-settled .incoming-strike,
.section1.is-settled .incoming-evolve-title,
.section1.is-settled .incoming-question-mark,
.section1.is-settled .incoming-question-text,
.section1.is-settled .incoming-projects,
.section1.is-settled .incoming-leaf,
.section1.is-settled .project-annotation,
.section1.is-settled .project-annotation__mark path,
.section1.is-settled .project-annotation__mark ellipse,
.section1.is-settled .project-annotation span,
.section1.is-settled .incoming-scroll-cue {
    animation: none !important;
}

.section1.is-settled .incoming-statement {
    opacity: 1;
    transform: translate(-50%, -210%);
}

.section1.is-settled .incoming-dead-line {
    transform: scale(0.72);
}

.section1.is-settled .incoming-dead-title {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) scale(1);
}

.section1.is-settled .incoming-strike {
    transform: translateY(-50%) scaleX(1);
}

.section1.is-settled .incoming-evolve-title,
.section1.is-settled .incoming-question-text {
    opacity: 1;
    transform: translateY(0);
}

.section1.is-settled .incoming-question-mark {
    opacity: 1;
    transform: translate(0, -50%) scale(1) rotate(0deg);
}

.section1.is-settled .incoming-projects {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.section1.is-settled .incoming-leaf {
    opacity: 1;
    transform: translateY(0) rotate(var(--enter-rotation));
}

.section1.is-settled .project-annotation {
    opacity: 1;
    transform: translateY(0);
}

.section1.is-settled .project-annotation__mark path,
.section1.is-settled .project-annotation__mark ellipse {
    stroke-dashoffset: 0;
}

.section1.is-settled .project-annotation span {
    opacity: 1;
}

.section1.is-settled .project-annotation--semantic span {
    transform: translate(-16px, 10px);
}

.section1.is-settled .incoming-scroll-cue {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 92%);
}

.section1.is-settled .incoming-scroll-cue.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 66%);
}

.incoming-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 6;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 62px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background-color: var(--color-green-primary);
    color: var(--color-background);
    font-family: 'Gabarito', sans-serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 92%);
    transition: opacity 360ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0ms linear 360ms;
    will-change: transform, opacity, visibility;
}

.incoming-scroll-cue span {
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.incoming-scroll-cue-arrow {
    display: block;
    width: 34px;
    height: auto;
    margin-top: 12px;
    flex-shrink: 0;
    object-fit: contain;
}

.incoming-scroll-cue.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 66%);
    transition-delay: 0ms;
}

.incoming-leaf {
    position: absolute;
    right: auto;
    bottom: auto;
    z-index: 2;
    opacity: 0;
    transform: translate(var(--enter-start-x), var(--enter-start-y)) rotate(0deg);
    --enter-delay: 0ms;
    --enter-start-x: 0px;
    --enter-start-y: 70vh;
    --enter-rotation: 150deg;
    --enter-overshoot-1: -34px;
    --enter-overshoot-2: -16px;
}

.incoming-leaf-1 {
    top: 84%;
    left: 12%;
    --enter-delay: 40ms;
    --enter-start-x: -20px;
    --enter-start-y: 72vh;
    --enter-rotation: 300deg;
}

.incoming-leaf-2 {
    top: 85%;
    left: 8%;
    --enter-delay: 90ms;
    --enter-start-x: 24px;
    --enter-start-y: 68vh;
    --enter-rotation: 220deg;
}

.incoming-leaf-3 {
    top: 75%;
    left: 8%;
    --enter-delay: 140ms;
    --enter-start-x: -16px;
    --enter-start-y: 74vh;
    --enter-rotation: 15deg;
}

.incoming-leaf-4 {
    top: 88%;
    left: 90%;
    --enter-delay: 190ms;
    --enter-start-x: 18px;
    --enter-start-y: 70vh;
    --enter-rotation: 235deg;
}

.incoming-leaf-5 {
    top: 88%;
    left: 86%;
    --enter-delay: 240ms;
    --enter-start-x: -22px;
    --enter-start-y: 66vh;
    --enter-rotation: 205deg;
}

.incoming-leaf-6 {
    top: 12%;
    left: 18%;
    --enter-delay: 290ms;
    --enter-start-x: 20px;
    --enter-start-y: 78vh;
    --enter-rotation: 185deg;
}

.section1.is-active .incoming-leaf {
    animation:
        leaf-enter 2400ms ease-in-out var(--enter-delay) forwards;
}

@keyframes leaf-enter {
    0% {
        opacity: 0;
        transform: translate(var(--enter-start-x), var(--enter-start-y)) rotate(0deg);
        animation-timing-function: ease-in-out;
    }
    30% {
        opacity: 1;
        transform: translateY(var(--enter-overshoot-1)) rotate(var(--enter-rotation));
        animation-timing-function: ease-in-out;
    }
    50% {
        transform: translateY(0) rotate(var(--enter-rotation));
        animation-timing-function: ease-in-out;
    }
    80% {
        transform: translateY(var(--enter-overshoot-2)) rotate(var(--enter-rotation));
        animation-timing-function: ease-in-out;
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(var(--enter-rotation));
    }
}

@keyframes dead-title-enter {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translate(140px, 18px) scale(0.98);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate(0, 0) scale(1);
    }
}

@keyframes strike-across {
    0% {
        transform: translateY(-50%) scaleX(0);
    }

    100% {
        transform: translateY(-50%) scaleX(1);
    }
}

@keyframes evolve-title-enter {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes question-pop {
    0% {
        opacity: 0;
        transform: translate(10px, -50%) scale(0.7) rotate(12deg);
    }

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

@keyframes question-text-enter {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes incoming-projects-enter {
    0% {
        opacity: 0;
        transform: translate(-50%, 100px) scale(1.2);
    }

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

@keyframes project-annotation-enter {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes project-annotation-draw {
    0% {
        stroke-dashoffset: 1;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes project-annotation-label-enter {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes section2-title-enter {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes statement-lift {
    0% {
        transform: translate(-50%, -50%);
    }

    100% {
        transform: translate(-50%, -210%);
    }
}

@keyframes dead-line-shrink {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.72);
    }
}

@media (max-width: 720px) {

    .section2 {
        height: 100vh;
        min-height: 100vh;
        padding: 96px 16px 0 0;
    }

    .section2-heading {
        width: 100%;
        padding-top: 0;
    }

    .section2-heading h2 {
        font-size: 32px;
    }

    .section2-heading p {
        font-size: 15px;
    }

    .section2-projects {
        width: 100%;
        max-width: none;
        height: calc(100vh - 96px);
    }

    .section2-projects .projects-container {
        padding-right: 50vw;
    }

    .section2-group-gap {
        flex-basis: 80px;
        width: 160px;
        min-width: 80px;
    }

    .section2-group-gap--lead {
        flex-basis: 160px;
        width: 160px;
        min-width: 160px;
    }

    .section2-group-cards {
        gap: 12px;
        padding-top: 92px;
    }

    .section2-group .section2-flower-field {
        top: 0;
        height: calc(100vh - 96px - 4vh);
    }

    .section2-projects .projects-item {
        flex-basis: calc(100vw - 16px);
        width: calc(100vw - 16px);
        min-width: calc(100vw - 16px);
    }

    .section2-flower__stem path {
        stroke-width: 7px;
    }

    .section2-flower--top-left {
        --flower-width: 42px;
        --flower-height: 230px;
        --flower-head-width: 30px;
        --flower-head-offset: 26px;
        --flower-left: -24px;
    }

    .section2-flower--top-right {
        --flower-width: 48px;
        --flower-height: 300px;
        --flower-head-width: 38px;
        --flower-head-offset: 32px;
        --flower-left: 12px;
    }

    .section2-flower--bottom-left {
        --flower-width: 72px;
        --flower-height: 200px;
        --flower-head-width: 62px;
        --flower-head-offset: 52px;
        --flower-left: auto;
        left: auto;
        right: 10px;
    }

    .section2-flower--bottom-right {
        --flower-width: 140px;
        --flower-height: 340px;
        --flower-head-width: 140px;
        --flower-head-offset: 36px;
        --flower-left: auto;
        left: auto;
        right: -56px;
    }

    .section2-group--gamification .section2-flower--top-left {
        --flower-width: 40px;
        --flower-height: 370px;
        --flower-head-width: 34px;
        --flower-head-offset: 28px;
        --flower-left: -18px;
    }

    .section2-group--gamification .section2-flower--top-right {
        --flower-width: 110px;
        --flower-height: 180px;
        --flower-head-width: 100px;
        --flower-head-offset: 36px;
        --flower-left: 10px;
        left: -10px;
        right: auto;
    }

    .section2-group--gamification .section2-flower--bottom-left {
        --flower-width: 80px;
        --flower-height: 400px;
        --flower-head-width: 72px;
        --flower-head-offset: 56px;
        --flower-left: auto;
        left: auto;
        right: -15px;
    }

    .section2-group--gamification .section2-flower--bottom-right {
        --flower-width: 44px;
        --flower-height: 430px;
        --flower-head-width: 36px;
        --flower-head-offset: 30px;
        --flower-left: auto;
        left: auto;
        right: 0px;
    }

    .incoming-dead-title,
    .incoming-evolve-title {
        font-size: 64px;
    }

    .incoming-question-mark {
        right: 50%;
        top: calc(100% + 32px);
        transform: translate(50%, 8px) scale(0.7) rotate(12deg);
    }

    .section1.is-active .incoming-question-mark {
        animation-name: question-pop-mobile;
    }

    .incoming-question-text {
        max-width: 320px;
        font-size: 16px;
    }

    .incoming-projects {
        top: 68%;
        width: calc(100vw - 32px);
        max-width: none;
    }

    .project-annotation {
        font-size: 12px;
    }

    .project-annotation--training {
        top: -74px;
        left: 0;
        width: 190px;
        transform-origin: left bottom;
    }

    .project-annotation--automation {
        top: -70px;
        right: -18px;
        width: 150px;
        transform-origin: right bottom;
    }

    .project-annotation--semantic {
        left: -10px;
        bottom: -76px;
        width: 130px;
        padding-top: 50px;
        transform-origin: left top;
    }

    .project-annotation--integration {
        right: -18px;
        bottom: -58px;
        width: 140px;
        transform-origin: right top;
    }

    .incoming-projects .projects-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .incoming-projects .projects-item {
        display: block;
        background-color: var(--color-foreground);
        overflow: hidden;
    }

    .incoming-projects .projects-item img,
    .incoming-projects .projects-item video {
        transform: translateY(-100%) translateX(0);
        position: static;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        order: 0;
    }

    .incoming-projects .projects-item-content {
        width: calc(100% - 24px);
        height: calc(100% - 24px);
        padding: 12px;
        position: static;
        background-color: transparent;
    }

    .incoming-projects .projects-item h2 {
        font-size: 18px;
        color: var(--color-background);
    }

    .incoming-projects .projects-item h3,
    .incoming-projects .projects-item p {
        color: var(--color-background);
    }

    .incoming-projects .projects-item h4 {
        display: block;
    }

    .incoming-projects .project-meta-tag {
        font-size: 10px;
        padding: 2px 6px;
    }

    .incoming-scroll-cue {
        width: 210px;
        height: 210px;
        padding-top: 48px;
        font-size: 28px;
    }

    .incoming-scroll-cue-arrow {
        width: 28px;
        margin-top: 10px;
    }
}

@keyframes question-pop-mobile {
    0% {
        opacity: 0;
        transform: translate(50%, 8px) scale(0.7) rotate(12deg);
    }

    100% {
        opacity: 1;
        transform: translate(50%, 0) scale(1) rotate(0deg);
    }
}