:root {
    --arti-purple: #672b8d;
    --arti-purple-dark: #562176;
    --arti-pink: #ec008c;
    --arti-teal: #3fc2b2;
    --arti-text: #383838;
    --arti-soft: #f7f5f9;
    --arti-border: #ece8ef;
    --arti-max: 1250px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #fff;
    color: var(--arti-text);
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input { font: inherit; }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(255,255,255,.98);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled {
    position: sticky;
    top: 0;
    box-shadow: 0 10px 35px rgba(42, 23, 56, .06);
}
.header-shell {
    width: min(calc(100% - 48px), var(--arti-max));
    min-height: 154px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 185px 1fr;
    gap: 42px;
    align-items: center;
}
.header-brand { align-self: start; padding-top: 12px; }
.brand-link { display: inline-flex; align-items: center; }
.custom-logo-link { display: inline-flex; }
.custom-logo { width: auto; max-width: 165px; max-height: 145px; object-fit: contain; }
.brand-placeholder {
    font-family: 'DynaPuff', cursive;
    color: var(--arti-purple);
    font-size: 34px;
    letter-spacing: -.05em;
}
.header-right {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 8px;
}
.header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 18px;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    overflow: visible;
    transition: transform .18s ease, opacity .18s ease;
}
.header-action:hover { transform: translateY(-2px); }
.header-action--contact { background: var(--arti-pink); }
.header-action--lab { background: var(--arti-purple); gap: 10px; }
.header-action--lab span { color: #ffd800; font-size: 20px; }

/* Header tasarımındaki elde çizilmiş vurgu çizgileri. Layout'a etki etmez. */
.header-action--contact::before {
    content: '';
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 136px;
    height: 72px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: center / 136px 72px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='136' height='72' viewBox='0 0 136 72'%3E%3Cpath d='M29 2.5h3.5' fill='none' stroke='%23672b8d' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M24 8.5h11' fill='none' stroke='%23672b8d' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M83 62.5h23' fill='none' stroke='%23672b8d' stroke-width='2.7' stroke-linecap='round'/%3E%3Cpath d='M93 68h8' fill='none' stroke='%23672b8d' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.header-action--lab::after {
    content: '';
    position: absolute;
    z-index: 2;
    width: 38px;
    height: 37px;
    right: -28px;
    top: -15px;
    pointer-events: none;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='37' viewBox='0 0 38 37'%3E%3Cpath d='M10 12 15 3' fill='none' stroke='%23ec008c' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='m18 17 10-6' fill='none' stroke='%23ec008c' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='m20 25 12-1' fill='none' stroke='%23ec008c' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.primary-navigation { width: 100%; }
.primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 38px;
}
.menu-item { position: relative; }
.menu-item > a {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    min-height: 44px;
    white-space: nowrap;
    font-size: 19px;
    font-weight: 500;
    line-height: 1;
    transition: color .18s ease;
}
.menu-item > a:hover { color: var(--arti-purple); }
.menu-item--aha > a { font-size: 18px; }
.aha-mark {
    font-family: 'DynaPuff', cursive;
    color: var(--arti-pink);
    font-size: 27px;
    font-weight: 700;
    transform: rotate(-7deg);
    display: inline-block;
    margin-right: 2px;
}
.submenu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 285px;
    list-style: none;
    margin: 0;
    padding: 24px 28px;
    border-radius: 0 35px 35px 35px;
    background: linear-gradient(145deg, #f00091, #ec008c 58%, #d80082);
    color: #fff;
    box-shadow: 0 22px 45px rgba(85, 21, 96, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: all .2s ease;
}

/* Ana menü ile alt menü arasındaki görsel boşluk hover alanını kesmesin. */
.submenu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
    background: transparent;
}
.menu-item:nth-child(2) .submenu { background: linear-gradient(145deg, #6d2d91, #58227e); }
.menu-item:nth-child(3) .submenu { background: linear-gradient(145deg, #3bbfad, #279f92); }
.menu-item:nth-child(4) .submenu { background: linear-gradient(145deg, #6d2d91, #58227e); }
.menu-item:nth-child(5) .submenu { background: linear-gradient(145deg, #f00091, #d60080); }

/* Son ana menünün alt menüsü viewport dışına taşmasın; sağ kenardan sola doğru açılsın. */
@media (min-width: 1025px) {
    .primary-menu > .menu-item:last-child > .submenu {
        left: auto;
        right: 0;
        border-radius: 35px 0 35px 35px;
    }
}
.menu-item:hover > .submenu,
.menu-item:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.submenu li + li { margin-top: 7px; }
.submenu a {
    display: block;
    padding: 3px 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    transition: transform .16s ease, opacity .16s ease;
}
.submenu a:hover { transform: translateX(4px); opacity: .82; }
.submenu li:nth-child(2) a { font-weight: 700; }

.mobile-toggle { display: none; }

.site-main.blank-canvas {
    min-height: 520px;
    background: #fff;
}
.site-main.blank-canvas > * { max-width: var(--arti-max); margin-left: auto; margin-right: auto; }

.site-footer {
    background: #fff;
}
.footer-shell {
    width: min(calc(100% - 48px), var(--arti-max));
    margin: 0 auto;
}
.footer-shell--main {
    min-height: 294px;
    display: grid;
    grid-template-columns: 430px 245px 220px 1fr;
    column-gap: 48px;
    align-items: start;
    padding: 38px 0 28px;
}
.footer-brand-group {
    display: grid;
    grid-template-columns: 184px 1fr;
    column-gap: 48px;
    align-items: start;
}
.footer-logo {
    display: inline-flex;
    align-items: flex-start;
    width: 184px;
}
.footer-custom-logo {
    display: block;
    width: auto;
    max-width: 184px;
    max-height: 195px;
    object-fit: contain;
    object-position: left top;
}
.brand-placeholder--footer {
    display: inline-flex;
    align-items: center;
    min-height: 170px;
    font-size: 30px;
}
.footer-manifesto {
    margin: 25px 0 0;
    color: var(--arti-pink);
    font-family: 'DynaPuff', cursive;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.62;
    letter-spacing: -.025em;
}
.footer-manifesto span { display: block; }
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 25px;
}
.footer-col h3 {
    margin: 0 0 8px;
    color: #282828;
    font-family: 'Dosis', sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.footer-col a {
    display: inline-block;
    color: #363636;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    transition: color .16s ease;
}
.footer-col a:hover { color: var(--arti-pink); }
.footer-col--classes { padding-left: 0; }
.footer-col--lab { position: relative; min-height: 225px; }
.footer-socials {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-top: 72px;
}
.footer-socials a,
.footer-socials span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #191919;
}
.footer-socials svg {
    display: block;
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-socials svg[viewBox="0 0 40 30"] {
    width: 40px;
    height: 30px;
}
.footer-socials .social-icon-fill {
    fill: currentColor;
    stroke: none;
}
.footer-brand-signature {
    background: #fff;
}
.footer-shell--signature {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0 16px 8px;
    color: #2c2c2c;
    font-family: 'DynaPuff', cursive;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}
.footer-shell--signature img {
    display: block;
    width: auto;
    max-width: 45px;
    max-height: 62px;
    object-fit: contain;
}
.footer-education-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-height: 58px;
    padding: 4px 3px;
    background: #2b5361;
    color: #fff;
    font-family: 'Dosis', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
}

.auth-page,
.not-found-page {
    min-height: 620px;
    padding: 80px 24px 100px;
    background: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.auth-card {
    width: min(100%, 480px);
    padding: 42px;
    border: 1px solid var(--arti-border);
    border-radius: 34px;
    box-shadow: 0 22px 70px rgba(64, 27, 83, .07);
}
.auth-eyebrow {
    color: var(--arti-pink);
    font-family: 'DynaPuff', cursive;
    font-size: 18px;
    margin-bottom: 8px;
}
.auth-card h1,
.not-found-inner h1 {
    margin: 0;
    color: var(--arti-purple);
    font-family: 'DynaPuff', cursive;
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.05;
}
.auth-lead { margin: 14px 0 28px; font-size: 19px; }
.auth-form { display: grid; gap: 16px; }
.auth-form label { display: grid; gap: 7px; font-weight: 600; font-size: 16px; }
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #ddd5e3;
    border-radius: 14px;
    outline: 0;
    background: #fff;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.auth-form input:focus {
    border-color: var(--arti-purple);
    box-shadow: 0 0 0 4px rgba(103, 43, 141, .09);
}
.auth-check { display: flex !important; grid-template-columns: auto 1fr !important; align-items: center; gap: 9px !important; font-weight: 500 !important; }
.auth-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    background: var(--arti-purple);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform .16s ease, background .16s ease;
}
.auth-submit:hover { transform: translateY(-2px); background: var(--arti-purple-dark); }
.auth-alt { margin: 20px 0 0; font-size: 16px; }
.auth-alt a { color: var(--arti-pink); font-weight: 700; }
.auth-message { margin-bottom: 18px; padding: 12px 14px; border-radius: 12px; font-size: 15px; }
.auth-message--error { background: #fff1f5; color: #9c1748; }

.not-found-inner { text-align: center; max-width: 680px; }
.not-found-code { font-family: 'DynaPuff', cursive; font-size: 92px; color: var(--arti-pink); line-height: 1; }
.not-found-inner p { font-size: 23px; margin: 18px 0 28px; }
.not-found-button { display: inline-flex; }

@media (max-width: 1180px) {
    .header-shell { grid-template-columns: 150px 1fr; gap: 25px; }
    .custom-logo { max-width: 135px; }
    .primary-menu { gap: 22px; }
    .menu-item > a { font-size: 17px; }
    .aha-mark { font-size: 23px; }
}

@media (max-width: 1024px) {
    .site-header.is-scrolled { position: sticky; }
    .header-shell {
        width: min(calc(100% - 32px), var(--arti-max));
        min-height: 96px;
        grid-template-columns: 1fr auto;
        gap: 18px;
    }
    .header-brand { align-self: center; padding-top: 0; }
    .custom-logo { max-width: 105px; max-height: 84px; }
    .header-right { flex-direction: row; align-items: center; gap: 12px; }
    .header-actions { padding: 0; gap: 8px; }
    .header-action--contact { display: none; }
    .header-action { min-height: 36px; padding: 8px 13px; font-size: 14px; }
    .mobile-toggle {
        width: 42px; height: 42px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: var(--arti-soft);
        cursor: pointer;
    }
    .mobile-toggle > span:not(.screen-reader-text) { width: 20px; height: 2px; background: var(--arti-purple); }
    .primary-navigation {
        position: fixed;
        left: 0;
        right: 0;
        top: 96px;
        bottom: 0;
        padding: 24px 22px 50px;
        overflow: auto;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all .2s ease;
    }
    .primary-navigation.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
    .primary-menu { flex-direction: column; align-items: stretch; gap: 0; }
    .menu-item { border-bottom: 1px solid var(--arti-border); }
    .menu-item > a { width: 100%; min-height: 58px; font-size: 22px; justify-content: space-between; }
    .submenu {
        position: static;
        min-width: 0;
        display: none;
        margin: 0 0 18px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        border-radius: 22px;
        box-shadow: none;
    }
    .submenu-open > .submenu { display: block; }
    .footer-shell--main {
        grid-template-columns: 1.35fr 1fr 1fr;
        column-gap: 36px;
        row-gap: 28px;
    }
    .footer-brand-group { grid-column: 1 / -1; grid-template-columns: 155px 1fr; column-gap: 34px; }
    .footer-logo { width: 155px; }
    .footer-custom-logo { max-width: 155px; max-height: 160px; }
    .footer-manifesto { margin-top: 16px; }
    .footer-socials { margin-top: 42px; }
}

@media (max-width: 640px) {
    body { font-size: 17px; }
    .header-shell { width: calc(100% - 24px); }
    .header-action--lab { font-size: 13px; padding-inline: 12px; }
    .site-main.blank-canvas { min-height: 420px; }
    .footer-shell { width: calc(100% - 36px); }
    .footer-shell--main {
        min-height: 0;
        grid-template-columns: 1fr 1fr;
        column-gap: 26px;
        row-gap: 30px;
        padding: 42px 0 28px;
    }
    .footer-brand-group {
        grid-column: 1 / -1;
        grid-template-columns: 132px 1fr;
        column-gap: 26px;
    }
    .footer-logo { width: 132px; }
    .footer-custom-logo { max-width: 132px; max-height: 140px; }
    .footer-manifesto { margin-top: 8px; font-size: 17px; line-height: 1.55; }
    .footer-col { padding-top: 0; }
    .footer-col h3 { font-size: 18px; margin-bottom: 6px; }
    .footer-col a { font-size: 16px; }
    .footer-col--lab { min-height: 0; }
    .footer-socials { margin-top: 30px; gap: 16px; }
    .footer-shell--signature {
        min-height: 72px;
        justify-content: flex-start;
        padding: 8px 0 18px;
        font-size: 15px;
    }
    .footer-shell--signature img { max-width: 40px; max-height: 54px; }
    .auth-page, .not-found-page { padding: 48px 16px 70px; min-height: 520px; }
    .auth-card { padding: 30px 22px; border-radius: 26px; }
}

/* =========================================================
   ARTI LAB HOME HERO / v0.1.9
   ========================================================= */
.blank-canvas--home {
    min-height: 0;
    overflow: hidden;
}
.blank-canvas--home > .artilab-hero {
    width: 100%;
    max-width: none;
    margin: 0;
}
.home-editor-content {
    width: min(calc(100% - 48px), var(--arti-max));
    margin: 0 auto;
}

.artilab-hero {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
}
.artilab-hero__stage {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}
.artilab-hero__left-blob {
    position: absolute;
    z-index: 0;
    left: -8.5vw;
    top: -8px;
    width: 58vw;
    min-width: 760px;
    height: 510px;
    background: #60338a;
    border-radius: 0 42% 49% 0 / 0 21% 35% 0;
    transform: rotate(.3deg);
    box-shadow: inset -32px -10px 65px rgba(70, 21, 108, .13);
}
.artilab-hero__left-blob::before {
    content: '';
    position: absolute;
    left: -3%;
    right: 12%;
    top: -72px;
    height: 122px;
    background: #fff;
    border-radius: 0 0 62% 44% / 0 0 100% 100%;
    transform: rotate(-1.2deg);
}
.artilab-hero__left-blob::after {
    content: '';
    position: absolute;
    left: -4%;
    right: -2%;
    bottom: -55px;
    height: 105px;
    background: #fff;
    border-radius: 52% 48% 0 0 / 100% 100% 0 0;
    transform: rotate(1.6deg);
}
.artilab-hero__content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), 1140px);
    min-height: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
}
.artilab-hero__copy {
    position: relative;
    z-index: 4;
    padding: 12px 0 38px;
    color: #fff;
}
.artilab-hero__title {
    margin: 0 0 12px;
    color: #ffed00;
    font-family: 'DynaPuff', cursive;
    font-size: clamp(55px, 5.2vw, 76px);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.045em;
    text-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.artilab-hero__lead {
    position: relative;
    display: flex;
    flex-direction: column;
    width: max-content;
    margin: 14px 0 16px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}
.artilab-hero__lead strong {
    position: absolute;
    right: -88px;
    bottom: -9px;
    color: #ffed00;
    font-family: 'DynaPuff', cursive;
    font-size: 39px;
    line-height: 1;
    transform: rotate(-10deg);
}
.artilab-hero__description {
    margin: 24px 0 28px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}
.artilab-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.hero-cta {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 40px;
    padding: 7px 15px 7px 15px;
    border-radius: 999px;
    color: #fff;
    font-family: 'Dosis', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    transition: transform .18s ease, filter .18s ease;
}
.hero-cta:hover {
    transform: translateX(4px) rotate(-1deg);
    filter: brightness(1.04);
}
.hero-cta::before,
.hero-cta::after {
    content: '';
    position: absolute;
    z-index: -1;
    pointer-events: none;
    border-top: 3px solid currentColor;
    border-radius: 50%;
    opacity: .95;
}
.hero-cta::before {
    width: 17px;
    left: 30px;
    top: -11px;
    transform: rotate(5deg);
}
.hero-cta::after {
    width: 22px;
    right: -19px;
    bottom: -9px;
    transform: rotate(-18deg);
}
.hero-cta--lab {
    background: #43c2b3;
    color: #66358e;
}
.hero-cta--experiments {
    background: #ec008c;
    color: #fff;
}
.hero-cta img {
    display: block;
    width: auto;
    height: 46px;
    max-width: 68px;
    object-fit: contain;
    margin: -13px -21px -13px 0;
}
.hero-cta__fallback {
    flex: 0 0 auto;
}
.hero-cta__fallback--search {
    position: relative;
    width: 29px;
    height: 29px;
    margin-right: -5px;
    border: 4px solid #ec008c;
    border-radius: 50%;
}
.hero-cta__fallback--search::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 4px;
    right: -12px;
    bottom: -6px;
    background: #ec008c;
    border-radius: 999px;
    transform: rotate(45deg);
}
.hero-cta__fallback--flask {
    color: #ffed00;
    font-size: 36px;
    line-height: .7;
    margin: -8px -8px -8px 0;
    transform: rotate(8deg);
}

.artilab-hero__visual {
    position: relative;
    align-self: stretch;
    min-height: 510px;
    margin-left: -10px;
}
.hero-cloud {
    position: absolute;
    z-index: 0;
    inset: 15px -4vw 0 0;
}
.hero-cloud__lobe {
    position: absolute;
    display: block;
    background: #63378f;
    box-shadow: inset 0 0 45px rgba(91, 39, 142, .18);
}
.hero-cloud__lobe--a {
    width: 365px;
    height: 355px;
    left: 25%;
    top: 5px;
    border-radius: 47% 53% 48% 52% / 50% 49% 51% 50%;
}
.hero-cloud__lobe--b {
    width: 330px;
    height: 315px;
    left: 1%;
    top: 20px;
    border-radius: 49% 51% 46% 54% / 47% 48% 52% 53%;
}
.hero-cloud__lobe--c {
    width: 286px;
    height: 285px;
    right: 0;
    top: 170px;
    border-radius: 50%;
}
.hero-cloud__lobe--d {
    width: 270px;
    height: 245px;
    left: 2%;
    bottom: 7px;
    border-radius: 50%;
}
.hero-cloud__lobe--e {
    width: 330px;
    height: 265px;
    left: 29%;
    bottom: 3px;
    border-radius: 50%;
}
.hero-cloud::before {
    content: '';
    position: absolute;
    width: 255px;
    height: 265px;
    left: -7%;
    top: 16px;
    border-radius: 50%;
    background: #45bdb3;
}
.hero-cloud::after {
    content: '';
    position: absolute;
    width: 255px;
    height: 235px;
    right: 5%;
    top: 76px;
    border-radius: 50%;
    background: #ec008c;
}
.hero-video-clip {
    position: absolute;
    z-index: 3;
    left: 23%;
    top: 24px;
    width: 58%;
    height: 475px;
    overflow: hidden;
    clip-path: ellipse(49% 49% at 50% 50%);
    background: #63378f;
}
.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.03);
}
.hero-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,.78);
    text-align: center;
    padding: 30px;
}
.hero-video-placeholder strong {
    font-family: 'DynaPuff', cursive;
    font-size: 34px;
}
.hero-video-placeholder span { font-size: 16px; }
.hero-speech {
    position: absolute;
    z-index: 5;
    left: 14%;
    top: 170px;
    min-width: 118px;
    padding: 17px 22px 18px;
    border: 3px solid #191919;
    border-radius: 55% 50% 55% 50%;
    background: #fff;
    color: #111;
    font-family: 'Dosis', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    transform: rotate(-2deg);
}
.hero-speech::after {
    content: '';
    position: absolute;
    right: -17px;
    bottom: -10px;
    width: 31px;
    height: 28px;
    background: #fff;
    border-right: 3px solid #191919;
    border-bottom: 3px solid #191919;
    transform: skew(24deg) rotate(20deg);
}
.hero-bubble {
    position: absolute;
    z-index: 4;
    display: block;
    border-radius: 50%;
    will-change: transform;
}
.hero-bubble--teal { background: #44bdb4; }
.hero-bubble--pink { background: #ec008c; }
.hero-bubble--one { width: 36px; height: 36px; left: 4%; top: 270px; animation: heroFloatA 5.4s ease-in-out infinite; }
.hero-bubble--two { width: 18px; height: 18px; left: 7%; top: 208px; animation: heroFloatB 4.3s ease-in-out infinite -1s; }
.hero-bubble--three { width: 45px; height: 45px; left: -1%; top: 250px; animation: heroFloatC 6.2s ease-in-out infinite -2.1s; }
.hero-bubble--four { width: 21px; height: 21px; left: 22%; bottom: 43px; animation: heroFloatA 4.8s ease-in-out infinite -1.8s; }
.hero-bubble--five { width: 20px; height: 20px; right: -2%; top: 208px; animation: heroFloatB 5.8s ease-in-out infinite -.7s; }
.hero-bubble--six { width: 50px; height: 50px; right: 5%; top: 22px; animation: heroFloatC 6.6s ease-in-out infinite -2.8s; }
@keyframes heroFloatA { 0%,100%{transform:translate3d(0,0,0)} 50%{transform:translate3d(7px,-15px,0)} }
@keyframes heroFloatB { 0%,100%{transform:translate3d(0,0,0)} 50%{transform:translate3d(-10px,11px,0)} }
@keyframes heroFloatC { 0%,100%{transform:translate3d(0,0,0)} 33%{transform:translate3d(7px,-10px,0)} 66%{transform:translate3d(-5px,9px,0)} }

.artilab-hero__ticker {
    position: relative;
    z-index: 7;
    width: 104%;
    margin-left: -2%;
    margin-top: -22px;
    padding: 7px 0 13px;
    overflow: hidden;
    background: #fff;
    transform: rotate(-1.65deg);
    transform-origin: center;
}
.artilab-hero__ticker-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    color: #303030;
    font-size: 35px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .01em;
    animation: heroTickerLTR 22s linear infinite;
}
.artilab-hero__ticker-track span { display: block; }
@keyframes heroTickerLTR {
    from { transform: translateX(-33.333%); }
    to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bubble,
    .artilab-hero__ticker-track { animation: none !important; }
    .hero-cta { transition: none; }
}

@media (max-width: 1180px) {
    .artilab-hero__content { width: min(calc(100% - 42px), 1060px); grid-template-columns: 43% 57%; }
    .artilab-hero__title { font-size: 60px; }
    .artilab-hero__visual { margin-left: -20px; }
    .hero-cloud__lobe--a { width: 325px; height: 315px; }
    .hero-cloud__lobe--b { width: 300px; height: 292px; }
    .hero-video-clip { left: 22%; width: 61%; }
}

@media (max-width: 1024px) {
    .artilab-hero__stage { min-height: 760px; }
    .artilab-hero__left-blob {
        left: -18%;
        top: 0;
        width: 120%;
        min-width: 0;
        height: 400px;
        border-radius: 0 0 47% 52% / 0 0 18% 22%;
    }
    .artilab-hero__left-blob::before { height: 76px; top: -52px; }
    .artilab-hero__left-blob::after { display: none; }
    .artilab-hero__content {
        width: min(calc(100% - 38px), 760px);
        min-height: 760px;
        grid-template-columns: 1fr;
        align-content: start;
    }
    .artilab-hero__copy { padding: 35px 18px 20px; }
    .artilab-hero__title { font-size: clamp(50px, 10vw, 72px); }
    .artilab-hero__description { max-width: 560px; }
    .artilab-hero__visual { min-height: 355px; width: 100%; margin: 0; }
    .hero-cloud { inset: -12px -7% 0 3%; transform: scale(.82); transform-origin: 50% 25%; }
    .hero-video-clip { left: 27%; top: 10px; width: 47%; height: 350px; }
    .hero-speech { left: 20%; top: 115px; }
    .hero-bubble--six { right: 8%; top: 10px; }
    .artilab-hero__ticker { margin-top: -8px; }
    .artilab-hero__ticker-track { font-size: 29px; }
}

@media (max-width: 640px) {
    .artilab-hero__stage { min-height: 725px; }
    .artilab-hero__left-blob { left: -28%; width: 150%; height: 390px; }
    .artilab-hero__content { width: calc(100% - 24px); min-height: 725px; }
    .artilab-hero__copy { padding: 30px 10px 15px; }
    .artilab-hero__title { font-size: clamp(48px, 14vw, 62px); }
    .artilab-hero__lead { font-size: 17px; }
    .artilab-hero__lead strong { right: -68px; font-size: 31px; }
    .artilab-hero__description { margin: 20px 0 22px; font-size: 16px; line-height: 1.42; max-width: 370px; }
    .hero-desktop-break { display: none; }
    .artilab-hero__actions { gap: 18px; }
    .hero-cta { font-size: 15px; min-height: 37px; }
    .hero-cta img { height: 40px; max-width: 58px; }
    .artilab-hero__visual { min-height: 330px; margin-top: 10px; }
    .hero-cloud { inset: -4px -22% 0 -16%; transform: scale(.66); }
    .hero-video-clip { left: 20%; top: 10px; width: 64%; height: 315px; }
    .hero-speech { left: 8%; top: 118px; min-width: 92px; padding: 13px 16px; font-size: 22px; }
    .hero-bubble--one { left: 1%; top: 190px; }
    .hero-bubble--two { left: 8%; top: 80px; }
    .hero-bubble--three { display: none; }
    .hero-bubble--four { left: 15%; bottom: 24px; }
    .hero-bubble--five { right: 0; top: 165px; }
    .hero-bubble--six { width: 38px; height: 38px; right: 2%; top: 18px; }
    .artilab-hero__ticker { width: 108%; margin-left: -4%; margin-top: -4px; padding: 9px 0 14px; }
    .artilab-hero__ticker-track { font-size: 24px; animation-duration: 18s; }
}
