html, body {
    margin: 0;
    padding: 0;
    background: #040408;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.heart-stage {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.heart-stage.visible {
    opacity: 1;
}

.heart-stage canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.pt-content {
    position: relative;
    z-index: 2;
    padding: 9em clamp(2em, 8vw, 10em) 0;
}

.websites-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4em;
    flex-wrap: wrap;
}

.websites-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(3.5em, 9vw, 7em);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    display: inline-block;
}

.websites-heading .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.1;
}

.websites-heading .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.6s ease-out;
    transition-delay: calc(var(--i) * 60ms);
}

.websites-heading.is-in .letter {
    transform: translateY(0);
    opacity: 1;
}

.websites-side {
    flex: 0 1 28em;
    text-align: right;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95em, 1.05vw, 1.05em);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
    margin: 0 0 0.6em;
}

.websites-side .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 0.045s);
}

.websites-side.is-in .reveal-word {
    opacity: 1;
    transform: translateY(0);
}

.websites-stage-titles {
    position: relative;
    z-index: 3;
    margin: 70vh auto 0;
    padding-bottom: 0;
    width: min(92vw, 100em);
    display: flex;
    flex-direction: column;
    pointer-events: none;
    counter-reset: stage-counter;
}

.stage-title {
    counter-increment: stage-counter;
}

.stage-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(2.8em, 6.2vw, 5.4em);
    letter-spacing: -0.01em;
    color: #fff;
    text-align: left;
    /* Equal top/bottom padding centers the text between the divider borders */
    padding: 16vh 0.1em;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: -1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        color     0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.stage-title-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 0 1 34rem;
    min-width: 0;
    pointer-events: none;
}

.stage-title-meta {
    position: absolute;
    bottom: calc(100% + 2.8rem);
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-28px);
    transition:
        opacity   0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.05s;
}

.stage-title-meta .meta-price {
    color: rgba(184, 156, 255, 0.95);
}

.stage-title-meta .meta-dot {
    opacity: 0.5;
}

.stage-title.is-spotlight .stage-title-meta {
    opacity: 1;
    transform: translateY(0);
}

.stage-title-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.72);
    text-align: right;
    margin-top: 1.5rem;
}

.stage-title-desc .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: min(calc(var(--i) * 0.02s), 0.6s);
}

.stage-title.is-spotlight .stage-title-desc .reveal-word {
    opacity: 1;
    transform: translateY(0);
}

.stage-title.is-spotlight {
    color: #b89cff;
    transition:
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        color     0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0s;
}

.stage-title:last-child {
    position: sticky;
    top: 45vh;
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        color   0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.websites-stage-titles.is-in .stage-title {
    opacity: 1;
    transform: translateY(0);
}

/* After initial reveal, switch to fast no-delay transitions for scroll-driven fades */
.websites-stage-titles.is-ready .stage-title {
    transition:
        opacity   0.25s cubic-bezier(0.22, 1, 0.36, 1),
        color     0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0s;
}

.websites-after {
    position: relative;
    z-index: 3;
    padding: 25vh clamp(2em, 8vw, 10em) 20vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 4rem;
    row-gap: 4rem;
}

.essentials-head {
    grid-column: 1 / -1;
}

.essentials {
    flex: 1 1 26rem;
    min-width: 0;
    color: #fff;
    padding-top: clamp(3em, 8vh, 6em);
}

.essentials-title .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.1;
}

.essentials-title .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.6s ease-out;
    transition-delay: calc(var(--i) * 60ms);
}

.essentials-head.is-in .essentials-title .letter {
    transform: translateY(0);
    opacity: 1;
}

.essentials-lead .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(0.2s + var(--i) * 0.045s);
}

.essentials-head.is-in .essentials-lead .reveal-word {
    opacity: 1;
    transform: translateY(0);
}


.essentials-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
}

.essentials-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(3.2em, 6vw, 5.4em);
    letter-spacing: -0.02em;
    margin: 0;
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
}

.essentials-lead {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 38rem;
    text-align: left;
}

.essentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.essentials-list li {
    padding: 1.1rem 0 1.1rem 1rem;
    border-left: 1px solid rgba(184, 156, 255, 0.35);
    opacity: 0;
    transform: translateY(-24px);
    transition:
        opacity      0.65s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i, 0) * 0.12s),
        transform    0.8s  cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i, 0) * 0.12s),
        border-color 0.2s  ease 0s;
}

.essentials-list li:hover {
    border-left-color: #b89cff;
}

.essentials-list li h3,
.essentials-list li p {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.essentials-list li:hover h3,
.essentials-list li:hover p {
    transform: translateX(10px);
}

.essentials-list.is-in li {
    opacity: 1;
    transform: translateY(0);
}

.essentials-list h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    color: #b89cff;
    margin: 0 0 0.35rem;
}

.essentials-list p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.essentials-media-card {
    width: min(80vw, 32rem);
    margin-top: 0;
    background: #0f0f14;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.essentials-media-card video {
    display: block;
    width: 100%;
    height: auto;
}

/* Hosting & Care */
.hosting-section {
    position: relative;
    z-index: 3;
    padding: 12vh clamp(2em, 8vw, 10em) 22vh;
    color: #fff;
    display: grid;
    gap: 6rem;
    justify-items: center;
}

.hosting-head {
    width: 100%;
    max-width: none;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.hosting-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(3.2em, 6vw, 5.4em);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1;
    color: #fff;
    flex-shrink: 0;
}

.hosting-title .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.1;
}

.hosting-title .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 60ms);
}

.hosting-head.is-in .hosting-title .letter {
    transform: translateY(0);
    opacity: 1;
}

.hosting-lead {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 26rem;
    text-align: right;
    flex: 1 1 16rem;
    margin-left: auto;
}

.hosting-lead .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(0.2s + var(--i) * 0.045s);
}

.hosting-head.is-in .hosting-lead .reveal-word {
    opacity: 1;
    transform: translateY(0);
}

.hosting-core {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
}

.hosting-left {
    justify-self: start;
    text-align: left;
    max-width: 24rem;
    margin-right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
}

.hosting-left .hosting-plan {
    position: static;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: 1.2rem 0 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    box-shadow: none;
    transition: none;
}

.hosting-left .hosting-plan:hover {
    transform: none;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.08);
}

.hosting-left .hosting-plan:first-of-type {
    border-top: none;
    padding-top: 0;
}

.hosting-left .hosting-plan .hosting-price {
    border-top: none;
    padding-top: 0;
    margin-top: 0.2rem;
    justify-content: flex-start;
}

.hosting-kicker {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(184, 156, 255, 0.8);
}

.hosting-plan-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
    margin: 0;
    color: #fff;
    line-height: 1.15;
}

.hosting-plan-title .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.15;
}

.hosting-plan-title .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 45ms);
}

.hosting-plan.is-in .hosting-plan-title .letter {
    transform: translateY(0);
    opacity: 1;
}

.hosting-plan-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.hosting-plan-text .reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity   0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(0.25s + var(--i) * 0.03s);
}

.hosting-plan.is-in .hosting-plan-text .reveal-word {
    opacity: 1;
    transform: translateY(0);
}

.hosting-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-top: 0.4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    opacity: 0;
    transform: translateY(-18px);
    transition:
        opacity   0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.55s;
}

.hosting-plan.is-in .hosting-price {
    opacity: 1;
    transform: translateY(0);
}

.hosting-price .price-row {
    display: flex;
    align-items: center;
    gap: 0.6em;
}

.hosting-price .price-row--alt {
    font-size: 0.85rem;
    opacity: 0.75;
}

.hosting-price .price-label {
    color: rgba(184, 156, 255, 0.95);
}

.hosting-price .price-amount {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: inherit;
    color: rgba(184, 156, 255, 0.95);
    line-height: 1.2;
}

.hosting-price .price-unit {
    color: rgba(255, 255, 255, 0.55);
}

.hosting-price .price-discount {
    display: inline-flex;
    align-items: center;
    gap: 0.55em;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.hosting-price .price-discount-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25em 0.6em;
    border-radius: 999px;
    background: rgba(184, 156, 255, 0.12);
    border: 1px solid rgba(184, 156, 255, 0.38);
    color: rgba(210, 190, 255, 0.98);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
}

.hosting-price .price-discount-label {
    color: rgba(255, 255, 255, 0.6);
}

.hosting-note {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
    margin: 0.6rem 0 0;
    letter-spacing: 0.02em;
}

.hosting-right {
    justify-self: start;
    max-width: 22rem;
    margin-left: 4rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.included-toggle {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0.4rem 0;
    margin: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-align: left;
    width: 100%;
    transition: color 0.2s ease;
}

.included-toggle:hover,
.included-toggle:focus-visible {
    color: #b89cff;
    outline: none;
}

.included-chevron {
    flex: 0 0 auto;
    color: #b89cff;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.included-toggle[aria-expanded="true"] .included-chevron {
    transform: rotate(180deg);
}

.included-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.included-toggle[aria-expanded="true"] + .included-panel {
    max-height: 44rem;
}

.included-list {
    padding-bottom: 0.6rem;
}

.included-kicker {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: -0.005em;
    color: inherit;
    line-height: 1.15;
    flex: 1 1 auto;
}

.included-kicker .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.15;
}

.included-kicker .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 35ms);
}

.hosting-right.is-in .included-kicker .letter {
    transform: translateY(0);
    opacity: 1;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.4rem;
    row-gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
}

.included-list li {
    position: relative;
    padding-left: 1.25rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity   0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    /* Snap out fast on close so the collapse feels clean */
    transition-delay: 0s;
}

.included-toggle[aria-expanded="true"] + .included-panel .included-list li {
    opacity: 1;
    transform: translateY(0);
    /* Cascade items in one by one after the panel opens */
    transition-delay: calc(0.12s + var(--i) * 0.055s);
}

.included-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #b89cff;
    box-shadow: 0 0 0 3px rgba(184, 156, 255, 0.15);
}

@media (max-width: 60rem) {
    .hosting-core {
        grid-template-columns: 1fr;
        gap: 4rem;
        justify-items: center;
    }
    .hosting-left,
    .hosting-right {
        justify-self: center;
        text-align: center;
        align-items: center;
    }
    .hosting-price {
        justify-content: center;
    }
    .included-list {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

.hosting-symbol {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Reserve footprint so the grid column doesn't collapse when the stage detaches */
    width: clamp(20rem, 34vw, 32rem);
    height: clamp(20rem, 34vw, 32rem);
}

.hosting-stage {
    width: clamp(20rem, 34vw, 32rem);
    height: clamp(20rem, 34vw, 32rem);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hosting-stage.visible {
    opacity: 1;
}

.hosting-stage canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* CTA */

.cta-section {
    position: relative;
    z-index: 2;
    margin-top: clamp(1em, 3vh, 3em);
    padding: clamp(0.5em, 2vh, 1.5em) clamp(2em, 5vw, 5em) clamp(10em, 24vh, 18em);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.cta-section.visible { pointer-events: auto; }

.cta-inner {
    max-width: 50em;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.4em;
    text-align: right;
    padding: 2.8em 3em 2.6em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2em;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 2;
}

.cta-section.visible .cta-inner {
    opacity: 1;
}

.cta-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4em, 4.4vw, 4em);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.cta-heading .letter-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: 1.1;
}

.cta-heading .letter {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i) * 55ms);
}

.cta-section.visible .cta-heading .letter {
    transform: translateY(0);
    opacity: 1;
}

.cta-description {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1.18em;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 28em;
    visibility: hidden;
}

.cta-description[data-split] {
    visibility: visible;
}

.cta-description .cta-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 0.045s + 0.35s);
}

.cta-section.visible .cta-description .cta-word {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    padding: 0.9em 1.6em;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1em;
    color: #fff;
    background: #8a67ff;
    border: 1px solid #8a67ff;
    border-radius: 999px;
    text-decoration: none;
    opacity: 0;
    transform: translateX(160px) scale(1);
    transform-origin: right center;
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s,
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.cta-section.visible .cta-button {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.cta-button:hover {
    transform: translateX(0) scale(1.2);
    background: #0a0a0f;
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.cta-button svg {
    transition: transform 0.25s ease;
}
.cta-button:hover svg {
    transform: translate(2px, -2px);
}

/* Three.js particle stick-figure stage behind the CTA card */
.cta-stick-stage {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: clamp(24rem, 38vw, 44rem);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.cta-stick-stage.visible {
    opacity: 1;
}

.cta-stick-stage canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* Space between the CTA section and the footer. */
#footer {
    margin-top: clamp(12em, 26vh, 20em);
}

.hosting-plans {
    width: 100%;
    max-width: 78rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
}

.hosting-plan {
    position: relative;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 2rem 1.9rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}

.hosting-plan:hover {
    border-color: rgba(184, 156, 255, 0.5);
    background: rgba(184, 156, 255, 0.04);
    transform: translateY(-4px);
}

.hosting-plan--featured {
    border-color: rgba(184, 156, 255, 0.4);
    background: rgba(184, 156, 255, 0.05);
}

.plan-badge {
    position: absolute;
    top: -0.7rem;
    right: 1.5rem;
    background: #b89cff;
    color: #0f0f14;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.plan-head .plan-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 0 0.4rem;
    color: #fff;
}

.plan-head .plan-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
}

.plan-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.4rem 0 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.2rem;
}

.plan-price .price-amount {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: #b89cff;
    line-height: 1;
}

.plan-price .price-period {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.plan-price .price-alt {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: auto;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.72);
}

.plan-features li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.45;
}

.websites-test {
    margin: 40vh auto 20vh;
    margin-left: clamp(1.5em, 3vw, 4em);
    padding: 1.2em 1.6em;
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.6em;
    background: rgba(255, 255, 255, 0.03);
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #b89cff;
    box-shadow: 0 0 0 3px rgba(184, 156, 255, 0.15);
}

/* Hide heading line breaks by default. The mobile query re-enables them.
   Must come BEFORE the @media blocks so the override wins on small screens. */
.hosting-title-br,
.cta-heading-br {
    display: none;
}

/* Stack the hosting head under 60rem. Covers tablets and landscape phones too. */
@media (max-width: 60rem) {
    .hosting-head {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 1em !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
    }
    .hosting-title {
        text-align: left !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
    }
    .hosting-title-br {
        display: inline !important;
    }
    .hosting-lead {
        text-align: left !important;
        margin: 0 !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }
}

/* Mobile: kill the particle stage entirely. Heading on top, side text
   below in normal flow. The websites-stage-titles list slots in right
   underneath instead of waiting for the particle morph. Each stage-title
   becomes a stacked card with name on top and price + description below,
   always visible (no spotlight-on-scroll needed). */
@media (max-width: 768px) {
    .heart-stage {
        display: none !important;
    }
    .pt-content {
        padding: 7em 1.5em 0;
    }
    .websites-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5em;
    }
    .websites-side {
        text-align: right;
        flex: 1 1 100%;
        max-width: 100%;
        margin-top: 2.5em;
    }
    .websites-stage-titles {
        margin: 6vh 0 0;
        width: 100%;
        pointer-events: auto;
    }
    .stage-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4em;
        padding: 3vh 0.1em 3vh 0.9em;
        font-size: clamp(2.2em, 8vw, 3.4em);
    }
    .stage-title::before {
        content: counter(stage-counter, decimal-leading-zero);
        font-family: 'Syne', sans-serif;
        font-weight: 600;
        font-size: 0.78rem;
        letter-spacing: 0.1em;
        color: #b89cff;
        opacity: 0.8;
        line-height: 1;
        margin-bottom: 0.3em;
    }
    .stage-title:last-child {
        position: static;
    }
    .stage-title-right {
        flex: 1 1 100%;
        align-items: flex-start;
        text-align: left;
        padding-left: 0;
    }
    .stage-title-meta {
        position: static;
        font-size: 0.78rem;
        flex-wrap: wrap;
    }
    .stage-title-desc {
        text-align: left;
        font-size: 1rem;
        margin-top: 0.6em;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .stage-title.is-spotlight .stage-title-desc {
        max-height: 30em;
    }
    .stage-title {
        cursor: pointer;
    }

    /* Essentials: head first, then video, then the titles-only list. */
    .websites-after {
        grid-template-columns: 1fr;
        padding: 10vh 1.5em 10vh;
        gap: 2.4rem;
    }
    .essentials-head {
        order: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8em;
        margin-bottom: 0;
    }
    /* "Das Wesentliche" is too wide for narrow phones. Force a break at the
       space between "Das" and "Wesentliche". The title is per-letter spans
       so we target the space's .letter-mask--space. */
    html[lang="de"] .essentials-title .letter-mask--space {
        display: block;
        width: 100%;
        height: 0;
    }
    .essentials-lead {
        text-align: left;
        margin: 0;
        max-width: 100%;
        flex: 1 1 100%;
    }
    .essentials-media-card {
        order: 2;
        width: 100%;
        margin-top: 0;
    }
    .essentials {
        order: 3;
        padding-top: 0;
    }
    .essentials-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem 1.2rem;
    }
    .essentials-list li {
        padding: 0.55rem 0 0.55rem 0.8rem;
        opacity: 1;
        transform: none;
    }
    .essentials-list li p {
        display: none;
    }
    .essentials-list h3 {
        font-size: 0.92rem;
        margin: 0;
    }

    /* Hosting & Care: title and text both LEFT-aligned. The <br> after "&"
       splits the heading across two lines. Lead text sits underneath. */
    .hosting-section {
        padding: 10vh 1.5em 14vh;
        gap: 2rem;
    }
    .cta-section {
        padding: 0 1.4em 0 !important;
    }
    .site-footer {
        margin-top: -5em !important;
    }
    .hosting-head {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 1em;
        width: 100%;
    }
    .hosting-title {
        text-align: left;
        max-width: 100%;
    }
    .hosting-title-br {
        display: inline;
    }
    .hosting-lead {
        text-align: left;
        margin: 0;
        max-width: 100%;
        flex: 1 1 100%;
    }

    /* Plans: titles, descriptions and prices all LEFT-aligned.
       Also prevent the price row from wrapping. Overrides the centered 60rem layout. */
    .hosting-left,
    .hosting-right {
        justify-self: start !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
    .hosting-plan,
    .hosting-left .hosting-plan {
        align-items: flex-start !important;
        text-align: left !important;
    }
    .hosting-plan-title,
    .hosting-plan-text,
    .hosting-note {
        text-align: left !important;
    }
    .hosting-price {
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    .hosting-price .price-row,
    .hosting-price .price-discount {
        flex-wrap: nowrap !important;
        white-space: nowrap;
    }

    /* Drop the entire "What hosting means with us" toggle block on mobile.
       Also kill the empty symbol stage that reserves ~20rem for a particle
       figure that never renders here. */
    .hosting-right,
    .hosting-symbol {
        display: none !important;
    }
    .hosting-core {
        gap: 0 !important;
    }

    /* CTA: mirrors the index.html mobile layout. */
    .cta-section {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: auto;
        margin-top: 0 !important;
        padding: 2em 1.4em 5em !important;
        pointer-events: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: stretch !important;
    }
    .cta-inner {
        width: 100% !important;
        max-width: none !important;
        align-items: stretch !important;
        text-align: center !important;
        padding: 2em 1.6em 2em !important;
        gap: 1.2em !important;
        opacity: 1 !important;
    }
    .cta-heading {
        font-size: clamp(2em, 7vw, 2.6em) !important;
        white-space: normal !important;
        text-align: center !important;
    }
    .cta-heading-br {
        display: inline !important;
    }
    .cta-description {
        max-width: 100% !important;
        text-align: center !important;
    }
    .cta-button {
        align-self: center !important;
    }
    .cta-stick-stage {
        display: none !important;
    }
}

/**
 * @INFO
 * Made by Cevio | https://www.cevio.at
 * @INFO
 */
