﻿@font-face {
    font-family: "Beany Bubble";
    src: url("fonts/BeanyBubbleV5-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Caladea";
    src: url("fonts/Caladea-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Caladea";
    src: url("fonts/Caladea-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Caladea";
    src: url("fonts/Caladea-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Caladea";
    src: url("fonts/Caladea-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --cream: #fbf7ef;
    --cream-deep: #f3ecdf;
    --blue: #34319a;
    --blue-dark: #292675;
    --pink: #efb9d2;
    --taupe: #b99591;
    --text: #242126;
    --card-radius: 42px;
    --content-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: "Caladea", Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.45;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
}

    .skip-link:focus {
        transform: translateY(0);
    }

.section-shell {
    width: min(calc(100% - 48px), var(--content-width));
    margin-inline: auto;
}

.hero {
    position: relative;
    display: grid;
    min-height: 92svh;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(44px, 6vw, 82px) 20px 104px;
}

    .hero::before,
    .hero::after {
        content: none;
        display: none;
    }

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 18px;
    width: 100%;
    text-align: center;
}

.hero__art {
    position: static;
    width: min(95vw, 1120px);
    transform-style: preserve-3d;
    transition: transform 180ms ease-out;
}

.hero__logo {
    --logo-x: 0px;
    --logo-y: 0px;
    --logo-rotate: 0deg;
    --logo-scale: 1;
    position: relative;
    z-index: 3;
    width: min(95vw, 1120px);
    height: auto;
    opacity: 0;
    filter: drop-shadow(0 14px 20px rgba(52, 49, 154, 0.08));
    translate: var(--logo-x) var(--logo-y);
    rotate: var(--logo-rotate);
    scale: var(--logo-scale);
    transform-origin: center;
    will-change: translate, rotate, scale;
    transition: translate 105ms ease-out, rotate 105ms ease-out, scale 105ms ease-out;
    animation: hero-arrive 620ms cubic-bezier(0.18, 0.9, 0.28, 1.22) forwards;
}

.hero__art .hero__logo {
    width: 100%;
}

.hero__tagline {
    margin: -2px 0 0;
    max-width: 680px;
    color: var(--blue);
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    opacity: 0;
    animation: hero-copy-arrive 420ms 300ms ease-out forwards;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    animation: hero-copy-arrive 420ms 400ms ease-out forwards;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.72rem 1.35rem;
    border: 3px solid var(--blue);
    border-radius: 999px;
    background: transparent;
    color: var(--blue);
    font-family: "Beany Bubble", Arial, sans-serif;
    font-size: 1.08rem;
    line-height: 1;
    text-decoration: none;
    transition: transform 110ms ease-out, background-color 110ms ease-out, color 110ms ease-out;
}

    .hero__button:hover {
        transform: translateY(-2px) scale(1.02);
    }

.hero__button--filled {
    background: var(--blue);
    color: #fff;
}

    .hero__button--filled:hover {
        background: var(--blue-dark);
    }

.hero__spark {
    position: absolute;
    z-index: 0;
    color: var(--pink);
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 3px 10px rgba(239, 185, 210, 0.18);
    animation: hero-spark-pop 2.4s steps(2, end) infinite;
}


@keyframes hero-spark-pop {
    0%, 100% {
        transform: rotate(-6deg) scale(1);
        opacity: 0.82;
    }

    50% {
        transform: rotate(6deg) scale(1.1);
        opacity: 1;
    }
}

.hero__spark--one {
    top: 7%;
    left: 4%;
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    animation-delay: 0s;
}

.hero__spark--two {
    top: 2%;
    left: 22%;
    font-size: clamp(1.4rem, 2vw, 2rem);
    animation-delay: -0.4s;
}

.hero__spark--three {
    top: 6%;
    left: 48%;
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    animation-delay: -0.9s;
}

.hero__spark--four {
    top: 3%;
    right: 22%;
    font-size: clamp(1.4rem, 2vw, 2rem);
    animation-delay: -1.35s;
}

.hero__spark--five {
    top: 9%;
    right: 4%;
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    animation-delay: -0.65s;
}

.hero__spark--six {
    top: 46%;
    left: 2%;
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    animation-delay: -1.75s;
}

.hero__spark--seven {
    top: 43%;
    right: 2%;
    font-size: clamp(1.6rem, 2.3vw, 2.3rem);
    animation-delay: -1.05s;
}

.hero__spark--eight {
    bottom: 9%;
    left: 7%;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    animation-delay: -0.25s;
}

.hero__spark--nine {
    bottom: 4%;
    left: 47%;
    font-size: clamp(1.4rem, 2vw, 2rem);
    animation-delay: -1.95s;
}

.hero__spark--ten {
    right: 7%;
    bottom: 10%;
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    animation-delay: -1.2s;
}

.hero__scroll {
    position: absolute;
    bottom: 26px;
    color: var(--blue);
    font-family: "Beany Bubble", Arial, sans-serif;
    font-size: 0.98rem;
    text-decoration: none;
    opacity: 0;
    animation: hero-copy-arrive 380ms 520ms ease-out forwards, hero-scroll-bob 1.5s 900ms ease-in-out infinite;
}

@keyframes hero-arrive {
    0% {
        opacity: 0;
        transform: translateY(18px) rotate(-1deg) scale(0.94);
    }

    72% {
        opacity: 1;
        transform: translateY(-3px) rotate(0.2deg) scale(1.018);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0) scale(1);
    }
}

@keyframes hero-copy-arrive {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-scroll-bob {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


.about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
    gap: clamp(48px, 9vw, 120px);
    align-items: center;
    padding-block: clamp(54px, 8vw, 110px) clamp(90px, 13vw, 170px);
}

.about__title-image {
    width: min(100%, 640px);
    margin: 0 0 1.8rem;
}

    .about__title-image img {
        width: 100%;
        height: auto;
    }

.section-title,
.software__title,
.project-tab,
.project-button,
.site-footer__inner > p {
    font-family: "Beany Bubble", Arial, sans-serif;
}

.section-title {
    margin: 0;
    color: var(--blue);
    font-size: clamp(3.7rem, 7vw, 6.2rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.section-title--underlined {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

    .section-title--underlined::after {
        content: "";
        position: absolute;
        left: 2%;
        bottom: -0.24em;
        width: 72%;
        height: 0.09em;
        border-radius: 999px;
        background: var(--blue);
        transform: rotate(-1.2deg);
    }

.about__text {
    max-width: 620px;
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
}

    .about__text p {
        margin: 0 0 1.15em;
    }

.about__portrait {
    margin: 0;
    transform: rotate(1.4deg);
}

    .about__portrait.reveal-right {
        opacity: 0;
        transform: translateY(12px) rotate(1.4deg);
        transition: opacity 900ms ease, transform 900ms ease;
        will-change: opacity, transform;
    }

        .about__portrait.reveal-right.active {
            opacity: 1;
            transform: translateY(0) rotate(1.4deg);
        }

    .about__portrait img {
        width: 100%;
        height: auto;
    }

.software {
    margin-top: 2.4rem;
}

.software__title {
    margin: 0 0 0.8rem;
    color: var(--blue);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.software__list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .software__list li {
        transition: transform 150ms ease-out;
        transform-origin: center;
    }

        .software__list li:hover {
            transform: translateY(-5px) scale(1.14) rotate(-2deg);
        }

        .software__list li:nth-child(even):hover {
            transform: translateY(-5px) scale(1.14) rotate(2deg);
        }

    .software__list img {
        width: clamp(30px, 4vw, 46px);
        height: clamp(30px, 4vw, 46px);
        object-fit: contain;
    }

.projects {
    padding-bottom: clamp(110px, 14vw, 190px);
}

.projects__title {
    text-align: center;
}

.project-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 2.5rem auto clamp(52px, 7vw, 86px);
}

.project-tab {
    min-height: 48px;
    padding: 0.72rem 1.45rem;
    border: 3px solid var(--blue);
    border-radius: 999px;
    background: transparent;
    color: var(--blue);
    cursor: pointer;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    line-height: 1;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

    .project-tab:hover {
        transform: translateY(-2px);
    }

    .project-tab:focus-visible,
    .project-button:focus-visible,
    .text-link:focus-visible,
    .site-footer a:focus-visible {
        outline: 4px solid var(--pink);
        outline-offset: 4px;
    }

    .project-tab.is-active {
        background: var(--blue);
        color: #fff;
    }

.project-panel[hidden] {
    display: none;
}

.featured-project {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: clamp(32px, 7vw, 92px);
    align-items: center;
    overflow: hidden;
    min-height: 410px;
    padding: clamp(38px, 6vw, 74px);
    border-radius: var(--card-radius);
}

.featured-project--rhode {
    background: #efe2d2;
}

.featured-project__logo {
    width: clamp(150px, 24vw, 270px);
    height: auto;
    margin-bottom: 1.5rem;
}

.featured-project__copy > p {
    max-width: 46ch;
    margin: 0;
    font-size: clamp(1.15rem, 1.8vw, 1.42rem);
}

.project-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.65rem 0;
    padding: 0;
    list-style: none;
}

    .project-disciplines li {
        padding: 0.42rem 0.9rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.52);
        color: #806762;
        font-size: 0.98rem;
    }

.project-button {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.78rem 1.4rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 1.15rem;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 160ms ease, background-color 160ms ease;
}

    .project-button:hover {
        background: var(--blue-dark);
        transform: translateY(-2px);
    }

.featured-project__image-link {
    display: block;
    border-radius: 32px;
    transition: transform 180ms ease;
}

    .featured-project__image-link:hover {
        transform: rotate(1deg) scale(1.015);
    }

.featured-project__image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 32px;
    object-fit: cover;
}


.featured-project--rhode .project-button--rhode {
    display: inline-flex;
    width: fit-content;
    min-height: 0;
    gap: 0.55rem;
    padding: 0 0 0.3rem;
    border-bottom: 1.5px solid currentColor;
    border-radius: 0;
    background: transparent;
    color: #8f716d;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    transition: color 150ms ease-out, transform 150ms ease-out, border-color 150ms ease-out;
}

    .featured-project--rhode .project-button--rhode:hover {
        background: transparent;
        color: #6f5753;
        transform: translateX(4px);
    }

.featured-project--rhode .featured-project__image-link {
    width: clamp(300px, 27vw, 410px);
    max-width: 100%;
    aspect-ratio: 1 / 1;
    justify-self: end;
    overflow: hidden;
    border-radius: 36px;
}

.featured-project--rhode .featured-project__image {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: inherit;
    object-fit: cover;
    object-position: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 30px;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr minmax(150px, 40%);
    gap: 24px;
    align-items: center;
    min-height: 285px;
    overflow: hidden;
    padding: 30px;
    border: 3px solid rgba(52, 49, 154, 0.16);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.45);
}

.project-card__eyebrow {
    margin: 0 0 0.45rem;
    color: var(--blue);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 0 0 0.65rem;
    color: var(--blue);
    font-family: "Beany Bubble", Arial, sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1;
}

.project-card p:not(.project-card__eyebrow) {
    margin: 0 0 1rem;
}

.project-card img {
    width: 100%;
    height: 210px;
    border-radius: 24px;
    object-fit: cover;
}

.text-link {
    color: var(--blue);
    font-weight: 700;
    text-underline-offset: 0.2em;
}

.site-footer {
    border-top: 3px solid var(--blue);
    background: var(--cream-deep);
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
    padding-block: 34px;
}

    .site-footer__inner > p {
        margin: 0;
        color: var(--blue);
        font-size: 1.35rem;
    }

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer a {
    display: inline-block;
    color: var(--blue);
    font-family: "Beany Bubble", Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: transform 140ms ease-out;
}

    .site-footer a:hover {
        transform: translateY(-2px) scale(1.04);
    }


@media (min-width: 1700px) {
    :root {
        --content-width: 1450px;
        --card-radius: 52px;
    }

    body {
        font-size: 1.18rem;
    }

    .section-shell {
        width: min(calc(100% - 96px), var(--content-width));
    }

   
    .hero {
        min-height: 94svh;
        padding: 72px 36px 124px;
    }

    .hero__art,
    .hero__logo {
        width: min(86vw, 1450px);
    }

    
    .about {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
        gap: clamp(100px, 8vw, 165px);
        padding-block: 105px 185px;
    }

    .about__copy {
        max-width: 820px;
    }

    .about__title-image {
        width: min(100%, 760px);
        margin-bottom: 2.2rem;
    }

    .about__text {
        max-width: 760px;
        font-size: 1.52rem;
        line-height: 1.48;
    }

    .about__portrait {
        width: 100%;
        max-width: 500px;
        justify-self: end;
    }

    .software {
        margin-top: 3rem;
    }

    .software__title {
        font-size: 2.15rem;
    }

    .software__list {
        gap: 18px;
    }

        .software__list img {
            width: 56px;
            height: 56px;
        }

    
    .section-title {
        font-size: 7.4rem;
    }

    .project-tabs {
        gap: 16px;
        margin-top: 3rem;
        margin-bottom: 96px;
    }

    .project-tab {
        min-height: 56px;
        padding: 0.85rem 1.8rem;
        font-size: 1.48rem;
        border-width: 3px;
    }

    
    .featured-project {
        grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
        gap: 110px;
        min-height: 510px;
        padding: 86px;
    }

    .featured-project__logo {
        width: 320px;
        margin-bottom: 1.8rem;
    }

    .featured-project__copy > p {
        max-width: 50ch;
        font-size: 1.52rem;
    }

    .project-disciplines {
        gap: 12px;
        margin-block: 2rem;
    }

        .project-disciplines li {
            padding: 0.52rem 1.05rem;
            font-size: 1.08rem;
        }

    .project-button {
        min-height: 58px;
        padding: 0.9rem 1.65rem;
        font-size: 1.3rem;
    }

    .featured-project__image-link {
        max-width: 440px;
        justify-self: end;
    }

    .featured-project--rhode .featured-project__image-link {
        width: 470px;
        max-width: 470px;
    }

    
    .project-grid {
        gap: 36px;
        margin-top: 38px;
    }

    .project-card {
        grid-template-columns: 1fr minmax(210px, 42%);
        gap: 34px;
        min-height: 340px;
        padding: 38px;
    }

        .project-card h3 {
            font-size: 3.25rem;
        }

        .project-card p:not(.project-card__eyebrow) {
            font-size: 1.18rem;
        }

        .project-card img {
            height: 255px;
        }

    
    .site-footer__inner {
        padding-block: 42px;
    }

        .site-footer__inner > p {
            font-size: 1.55rem;
        }

    .site-footer nav {
        gap: 26px;
    }

    .site-footer a {
        font-size: 1.28rem;
    }
}

@media (max-width: 850px) {
    .about {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
        gap: 36px;
    }

    .featured-project {
        grid-template-columns: 1fr 38%;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 1rem;
    }

    .section-shell {
        width: min(calc(100% - 34px), var(--content-width));
    }

    .hero {
        min-height: 86svh;
        padding: 38px 10px 82px;
    }

    .hero__art,
    .hero__logo {
        width: min(98vw, 720px);
    }

    .hero__tagline {
        max-width: 310px;
        font-size: 1.05rem;
    }

    .hero__actions {
        gap: 9px;
    }

    .hero__button {
        min-height: 44px;
        padding: 0.66rem 1.08rem;
        font-size: 1rem;
    }

    .hero__scroll {
        bottom: 20px;
    }

    
    .hero__spark {
        font-size: 0.95rem;
    }

    .hero__spark--one {
        top: 7%;
        left: 3%;
    }

    .hero__spark--two {
        top: 2%;
        left: 23%;
    }

    .hero__spark--three {
        top: 4%;
        left: 63%;
    }

    .hero__spark--four {
        top: 2%;
        right: 22%;
    }

    .hero__spark--five {
        top: 8%;
        right: 3%;
    }

    .hero__spark--six {
        top: 45%;
        left: 1%;
    }

    .hero__spark--seven {
        top: 44%;
        right: 1%;
    }

    .hero__spark--eight {
        bottom: 9%;
        left: 4%;
    }

    .hero__spark--nine {
        bottom: 4%;
        left: 47%;
    }

    .hero__spark--ten {
        right: 4%;
        bottom: 10%;
    }

    .about {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .about__title-image {
        width: min(100%, 520px);
        margin-bottom: 1.4rem;
    }

    .about__portrait {
        order: -1;
        width: min(72vw, 370px);
        margin: 0 auto 10px;
    }

    .section-title {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .project-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .project-tab {
        width: 100%;
        padding-inline: 0.8rem;
        font-size: 1rem;
    }

    .featured-project {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        border-radius: 32px;
    }

    .featured-project__image-link {
        width: min(100%, 360px);
        margin-inline: auto;
    }

    .featured-project--rhode .featured-project__image-link {
        width: min(100%, 360px);
        max-width: 360px;
        justify-self: center;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

        .project-card img {
            height: 230px;
        }

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .hero__logo,
    .hero__tagline,
    .hero__actions,
    .hero__scroll {
        opacity: 1;
    }

    .hero__art {
        transform: none !important;
    }

    .about__portrait.reveal-right {
        opacity: 1;
        transform: rotate(1.4deg);
        transition: none !important;
    }

    .hero__logo {
        --logo-x: 0px !important;
        --logo-y: 0px !important;
        --logo-rotate: 0deg !important;
        --logo-scale: 1 !important;
    }
}



.featured-project--rhode .featured-project__image-link:hover {
    transform: none;
}




@media (max-width: 680px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100svh;
        padding: 48px 16px 74px;
    }

    .hero__inner {
        width: 100%;
        max-width: 414px;
        margin-inline: auto;
        gap: 14px;
    }

    .hero__art {
        width: min(86vw, 356px) !important;
        max-width: 356px !important;
        margin-inline: auto;
    }

        .hero__logo,
        .hero__art .hero__logo {
            display: block;
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            margin-inline: auto;
            translate: 0 0;
            rotate: 0deg;
            scale: 1;
            transform-origin: center;
        }

    .hero__tagline {
        width: min(100%, 310px);
        margin-inline: auto;
        font-size: 0.98rem;
        line-height: 1.4;
    }

    .hero__actions {
        width: 100%;
        justify-content: center;
    }

    .hero__button {
        min-height: 42px;
        padding: 0.62rem 1rem;
        font-size: 0.94rem;
    }

    .hero__scroll {
        bottom: 16px;
        font-size: 0.88rem;
    }

   
    .hero__spark--one {
        top: 8%;
        left: 5%;
    }

    .hero__spark--two {
        top: 4%;
        left: 25%;
    }

    .hero__spark--three {
        top: 5%;
        left: 62%;
    }

    .hero__spark--four {
        top: 3%;
        right: 19%;
    }

    .hero__spark--five {
        top: 10%;
        right: 4%;
    }

    .hero__spark--six {
        top: 45%;
        left: 2%;
    }

    .hero__spark--seven {
        top: 43%;
        right: 2%;
    }

    .hero__spark--eight {
        bottom: 10%;
        left: 5%;
    }

    .hero__spark--nine {
        bottom: 5%;
        left: 47%;
    }

    .hero__spark--ten {
        right: 5%;
        bottom: 11%;
    }
}

@media (max-width: 680px) {
    .hero {
        min-height: auto;
        padding: 42px 16px 26px;
    }

    .hero__inner {
        gap: 10px;
    }

    .hero__art {
        width: min(84vw, 348px) !important;
        max-width: 348px !important;
    }

    .hero__scroll {
        display: none;
    }

    .about {
        padding-top: 18px;
    }

    .about__portrait {
        margin-top: 0;
    }
}
