/* StanLoop public Loop page layout - v0.1.79 */
:root {
    --sl-loop-green: #17233A;
    --sl-loop-green-deep: #17233A;
    --sl-loop-green-soft: #F3F6FA;
    --sl-loop-orange: #F7C948;
    --sl-loop-orange-strong: #F7C948;
    --sl-loop-orange-soft: #FFF0B5;
    --sl-loop-ink: #17212B;
    --sl-loop-muted: #59636E;
    --sl-loop-line: rgba(24, 33, 51, .10);
    --sl-loop-card: #ffffff;
    --sl-loop-shadow: 0 18px 48px rgba(31, 43, 68, .10);
    --sl-loop-radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body.stanloop-loop-layout-page {
    margin: 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(23, 35, 58, .07), transparent 23%),
        radial-gradient(circle at 92% 1%, rgba(247, 201, 72, .07), transparent 25%),
        #FAF9F6;
}


.stanloop-loop-site-header,
.stanloop-loop-site-footer,
.stanloop-loop-site-header *,
.stanloop-loop-site-footer * {
    box-sizing: border-box;
}

.stanloop-loop-site-header {
    width: min(1480px, calc(100% - 36px));
    margin: 22px auto 0;
    position: relative;
    z-index: 20;
}

.stanloop-loop-site-header__inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr minmax(260px, 340px) auto;
    gap: 24px;
    align-items: center;
    padding: 12px 18px 12px 30px;
    border: 1px solid var(--sl-loop-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 42px rgba(31, 43, 68, .09);
    backdrop-filter: blur(14px);
}

.stanloop-loop-site-logo {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: 1;
    font-size: 33px;
}

.stanloop-loop-site-logo span {
    color: var(--sl-loop-green-deep);
}

.stanloop-loop-site-logo strong {
    color: var(--sl-loop-orange);
    font-weight: 900;
}

.stanloop-loop-site-logo:hover,
.stanloop-loop-site-logo:focus {
    text-decoration: none;
}

.stanloop-loop-site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
}

.stanloop-loop-site-nav a {
    position: relative;
    color: var(--sl-loop-ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.stanloop-loop-site-nav a.is-active,
.stanloop-loop-site-nav a:hover,
.stanloop-loop-site-nav a:focus {
    color: var(--sl-loop-green-deep);
    text-decoration: none;
}

.stanloop-loop-site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--sl-loop-green);
    transform: translateX(-50%);
}

.stanloop-loop-site-search {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--sl-loop-line);
    border-radius: 12px;
    background: #fff;
    color: var(--sl-loop-muted);
}

.stanloop-loop-site-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--sl-loop-ink);
    font-size: 13px;
}

.stanloop-loop-site-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stanloop-loop-site-login,
.stanloop-loop-site-start {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
}

.stanloop-loop-site-login {
    color: var(--sl-loop-green-deep);
    border: 1px solid rgba(23, 35, 58, .45);
    background: #fff;
}

.stanloop-loop-site-start {
    color: #fff;
    background: linear-gradient(135deg, #17233A, #17233A);
    box-shadow: 0 12px 24px rgba(23, 35, 58, .22);
}

.stanloop-loop-site-login:hover,
.stanloop-loop-site-login:focus,
.stanloop-loop-site-start:hover,
.stanloop-loop-site-start:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

.stanloop-loop-site-footer {
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto 28px;
    border: 1px solid var(--sl-loop-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 42px rgba(31, 43, 68, .07);
    overflow: hidden;
}

.stanloop-loop-site-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 34px;
    padding: 34px 38px 26px;
}

.stanloop-loop-footer-brand .stanloop-loop-site-logo {
    font-size: 28px;
}

.stanloop-loop-footer-brand p {
    margin: 10px 0 18px;
    color: var(--sl-loop-muted);
    line-height: 1.45;
}

.stanloop-loop-footer-socials {
    display: flex;
    gap: 12px;
    color: var(--sl-loop-ink);
    font-weight: 900;
}

.stanloop-loop-site-footer h3 {
    margin: 0 0 12px;
    color: var(--sl-loop-ink);
    font-size: 14px;
    font-weight: 900;
}

.stanloop-loop-site-footer a {
    display: block;
    margin: 7px 0;
    color: var(--sl-loop-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.stanloop-loop-site-footer a:hover,
.stanloop-loop-site-footer a:focus {
    color: var(--sl-loop-green-deep);
    text-decoration: none;
}

.stanloop-loop-site-footer__bottom {
    padding: 16px 38px 22px;
    color: var(--sl-loop-muted);
    text-align: center;
    font-size: 12px;
    border-top: 1px solid var(--sl-loop-line);
}

.stanloop-loop-page,
.stanloop-loop-page * {
    box-sizing: border-box;
}

.stanloop-loop-page {
    width: 100%;
    padding: 24px 18px 32px;
    color: var(--sl-loop-ink);
    font-family: inherit;
}

.stanloop-loop-shell {
    width: min(1480px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 224px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.stanloop-loop-sidebar {
    min-width: 0;
}

.stanloop-loop-sidebar__inner {
    position: sticky;
    top: 22px;
    display: grid;
    gap: 20px;
}

.admin-bar .stanloop-loop-sidebar__inner {
    top: 54px;
}

.stanloop-loop-nav {
    background: rgba(255, 255, 255, .90);
    border: 1px solid var(--sl-loop-line);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(31, 43, 68, .08);
    padding: 12px;
    display: grid;
    gap: 6px;
}

.stanloop-loop-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--sl-loop-ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.stanloop-loop-nav__link:hover,
.stanloop-loop-nav__link:focus,
.stanloop-loop-nav__link--active {
    background: linear-gradient(135deg, rgba(23, 35, 58, .16), rgba(247, 201, 72, .08));
    color: var(--sl-loop-green-deep);
    transform: translateX(2px);
    text-decoration: none;
}

.stanloop-loop-nav__icon {
    width: 25px;
    height: 25px;
    border-radius: 9px;
    display: inline-grid;
    place-items: center;
    color: var(--sl-loop-green-deep);
    background: rgba(23, 35, 58, .10);
    font-weight: 900;
}

.stanloop-loop-ad-card {
    position: relative;
    min-height: 420px;
    padding: 22px 18px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(23, 35, 58, .34);
    box-shadow: 0 18px 42px rgba(31, 43, 68, .09);
    background:
        radial-gradient(circle at 20% 16%, rgba(255, 255, 255, .80), transparent 28%),
        linear-gradient(160deg, #E5E8EC 0%, #FFE39A 50%, #F7C948 100%);
    color: #17233A;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
}

.stanloop-loop-ad-card::before {
    content: "";
    position: absolute;
    inset: 105px 18px 96px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .28);
    border: 1px dashed rgba(23, 35, 58, .35);
    z-index: -1;
}

.stanloop-loop-ad-card__label {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .65);
    color: rgba(23, 35, 58, .75);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.stanloop-loop-ad-card h3 {
    margin: 0 0 8px;
    font-size: 25px;
    line-height: 1.1;
    color: #17233A;
}

.stanloop-loop-ad-card p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.45;
}

.stanloop-loop-ad-card a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border-radius: 14px;
    color: #fff;
    background: #17233A;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(23, 35, 58, .22);
}

.stanloop-loop-main {
    min-width: 0;
    display: grid;
    gap: 24px;
}

.stanloop-loop-card,
.stanloop-loop-hero {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--sl-loop-line);
    border-radius: var(--sl-loop-radius);
    box-shadow: var(--sl-loop-shadow);
}

.stanloop-loop-hero {
    min-height: 292px;
    padding: 32px;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) minmax(280px, 360px);
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(23, 35, 58, .16), transparent 31%),
        radial-gradient(circle at 88% 12%, rgba(247, 201, 72, .18), transparent 29%),
        linear-gradient(112deg, #F3F6FA 0%, #F8FBF9 48%, #FFF0B5 100%);
}

.stanloop-loop-hero::before,
.stanloop-loop-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
}

.stanloop-loop-hero::before {
    width: 170px;
    height: 170px;
    right: -42px;
    top: -54px;
    border: 2px solid rgba(255, 255, 255, .26);
}

.stanloop-loop-hero::after {
    width: 220px;
    height: 78px;
    left: 37%;
    bottom: 25px;
    border-bottom: 3px solid rgba(255, 255, 255, .22);
    transform: rotate(-8deg);
}

.stanloop-loop-hero__avatar-wrap,
.stanloop-loop-hero__content,
.stanloop-loop-trust-card {
    position: relative;
    z-index: 1;
}

.stanloop-loop-hero__avatar-wrap {
    display: inline-grid;
    place-items: center;
}

.stanloop-loop-hero__avatar {
    width: 158px;
    height: 158px;
    object-fit: cover;
    border-radius: 50%;
    border: 7px solid rgba(255, 255, 255, .86);
    box-shadow: 0 14px 30px rgba(31, 43, 68, .18);
    background: #fff;
}

.stanloop-loop-hero__status {
    margin-top: -26px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--sl-loop-green);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(23, 35, 58, .25);
}

.stanloop-loop-hero h1 {
    margin: 0 0 10px;
    color: var(--sl-loop-ink);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -.045em;
    text-shadow: none;
}

.stanloop-loop-hero h1 .stanloop-verified-badge {
    transform: translateY(-3px);
}

.stanloop-loop-hero__content p {
    margin: 0 0 24px;
    max-width: 620px;
    color: #43505B;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
}

.stanloop-loop-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stanloop-loop-button,
.stanloop-loop-card-button {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 13px;
    font-weight: 900;
    text-decoration: none;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease;
}

.stanloop-loop-button:hover,
.stanloop-loop-button:focus,
.stanloop-loop-card-button:hover,
.stanloop-loop-card-button:focus {
    transform: translateY(-1px);
    text-decoration: none;
}

.stanloop-loop-button--primary {
    background: linear-gradient(135deg, #17233A, #17233A);
    color: #fff;
    box-shadow: 0 14px 28px rgba(23, 35, 58, .28);
}

.stanloop-loop-button--light {
    background: rgba(255, 255, 255, .96);
    color: var(--sl-loop-ink);
    box-shadow: 0 12px 26px rgba(31, 43, 68, .12);
}

.stanloop-loop-trust-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .50);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 18px 46px rgba(31, 43, 68, .13);
}

.stanloop-loop-trust-card h2 {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sl-loop-ink);
    font-size: 19px;
}

.stanloop-loop-trust-card h2 span {
    color: #4b56ff;
}

.stanloop-loop-trust-card__rows {
    display: grid;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--sl-loop-line);
}

.stanloop-loop-trust-row {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
    align-items: center;
    font-weight: 800;
}

.stanloop-loop-trust-row__platform {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.stanloop-loop-trust-row__platform--youtube {
    background: #ff0000;
}

.stanloop-loop-trust-row__platform--instagram {
    background: linear-gradient(135deg, #F7C948, #ee2a7b, #6228d7);
}

.stanloop-loop-trust-row strong {
    color: var(--sl-loop-green-deep);
    font-size: 18px;
}

.stanloop-loop-trust-row.is-muted {
    opacity: .68;
}

.stanloop-loop-trust-row.is-muted strong {
    color: #9aa2ad;
}

.stanloop-loop-socials span {
    display: block;
    margin-bottom: 10px;
    color: var(--sl-loop-ink);
    font-size: 13px;
    font-weight: 800;
}

.stanloop-loop-socials small {
    color: var(--sl-loop-muted);
    font-weight: 700;
}

.stanloop-loop-socials__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stanloop-loop-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #fff;
    color: var(--sl-loop-ink);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(31, 43, 68, .12);
    border: 1px solid rgba(31, 43, 68, .08);
}

.stanloop-loop-social-icon:hover,
.stanloop-loop-social-icon:focus {
    color: var(--sl-loop-orange);
    text-decoration: none;
    transform: translateY(-1px);
}

.stanloop-loop-welcome {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 46%);
    gap: 30px;
    padding: 32px;
    align-items: center;
}

.stanloop-loop-welcome h2,
.stanloop-loop-section h2 {
    margin: 0;
    color: var(--sl-loop-ink);
    line-height: 1.1;
    letter-spacing: -.025em;
}

.stanloop-loop-welcome h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.stanloop-loop-welcome__copy > p {
    margin: 0 0 22px;
    max-width: 620px;
    color: var(--sl-loop-ink);
    font-size: 17px;
    line-height: 1.55;
}

.stanloop-loop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.stanloop-loop-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 12px;
    background: var(--sl-loop-green-soft);
    color: var(--sl-loop-green-deep);
    font-weight: 900;
}

.stanloop-loop-stats {
    max-width: 620px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--sl-loop-line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.stanloop-loop-stat {
    min-height: 94px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    border-right: 1px solid var(--sl-loop-line);
}

.stanloop-loop-stat:last-child {
    border-right: 0;
}

.stanloop-loop-stat span {
    color: var(--sl-loop-green-deep);
    font-weight: 900;
}

.stanloop-loop-stat strong {
    font-size: 24px;
    line-height: 1;
}

.stanloop-loop-stat small {
    color: var(--sl-loop-muted);
    font-weight: 700;
}

.stanloop-loop-welcome__media {
    min-width: 0;
}

.stanloop-loop-video-card {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sl-loop-green-soft), var(--sl-loop-orange-soft));
    margin-bottom: 14px;
}

.stanloop-loop-video-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(1.05);
}

.stanloop-loop-video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--sl-loop-ink);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 35px rgba(31, 43, 68, .18);
    font-weight: 900;
}

.stanloop-loop-welcome__media strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.stanloop-loop-welcome__media p {
    margin: 0;
    color: var(--sl-loop-muted);
}

.stanloop-loop-section {
    padding: 26px;
}

.stanloop-loop-section-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.stanloop-loop-section-head h2 {
    font-size: 24px;
}

.stanloop-loop-section-head a {
    color: var(--sl-loop-green-deep);
    text-decoration: none;
    font-weight: 900;
    white-space: nowrap;
}

.stanloop-loop-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.stanloop-loop-path-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.stanloop-loop-path-card,
.stanloop-loop-link-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--sl-loop-line);
    border-radius: 18px;
    background: #fff;
}

.stanloop-loop-path-card__image,
.stanloop-loop-link-card__image {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sl-loop-green-soft), var(--sl-loop-orange-soft));
    color: var(--sl-loop-green-deep);
    text-decoration: none;
    font-weight: 900;
}

.stanloop-loop-path-card__image img,
.stanloop-loop-link-card__image img,
.stanloop-loop-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.stanloop-loop-path-card__image span,
.stanloop-loop-link-card__image span {
    height: 100%;
    display: grid;
    place-items: center;
}

.stanloop-loop-path-card__image em {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(238, 242, 247, .95);
    color: var(--sl-loop-green-deep);
    font-style: normal;
    font-size: 11px;
    font-weight: 900;
}

.stanloop-loop-path-card__body,
.stanloop-loop-link-card__body {
    padding: 15px;
}

.stanloop-loop-path-card h3,
.stanloop-loop-link-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.2;
}

.stanloop-loop-path-card h3 a,
.stanloop-loop-link-card h3 a {
    color: var(--sl-loop-ink);
    text-decoration: none;
}

.stanloop-loop-path-card p,
.stanloop-loop-link-card p {
    min-height: 40px;
    margin: 0 0 12px;
    color: var(--sl-loop-muted);
    font-size: 13px;
    line-height: 1.45;
}

.stanloop-loop-mini-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--sl-loop-muted);
    font-size: 12px;
    font-weight: 800;
}

.stanloop-loop-card-button {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(23, 35, 58, .45);
    background: #fff;
    color: var(--sl-loop-green-deep);
    box-shadow: none;
}

.stanloop-loop-card-button:hover,
.stanloop-loop-card-button:focus {
    background: var(--sl-loop-green);
    color: #fff;
}

.stanloop-loop-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 118px;
    gap: 12px;
}

.stanloop-loop-gallery-item {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sl-loop-green-soft), var(--sl-loop-orange-soft));
    color: var(--sl-loop-green-deep);
    text-decoration: none;
    font-weight: 900;
}

.stanloop-loop-gallery-item--4,
.stanloop-loop-gallery-item--5 {
    grid-column: span 1;
}

.stanloop-loop-gallery-item--5 {
    grid-column: span 2;
}

.stanloop-loop-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stanloop-loop-link-card__image {
    height: 132px;
}

.stanloop-loop-four-col {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.stanloop-loop-small-section {
    padding: 22px;
    min-height: 310px;
}

.stanloop-loop-small-section .stanloop-loop-section-head {
    margin-bottom: 14px;
}

.stanloop-loop-small-section .stanloop-loop-section-head h2,
.stanloop-loop-work-preview h2 {
    font-size: 22px;
}

.stanloop-loop-small-section .stanloop-loop-section-head a {
    font-size: 12px;
}

.stanloop-loop-compact-list,
.stanloop-loop-resource-list,
.stanloop-loop-accordion-preview {
    display: grid;
    gap: 10px;
}

.stanloop-loop-compact-item,
.stanloop-loop-resource-item,
.stanloop-loop-accordion-preview a {
    display: grid;
    align-items: center;
    gap: 10px;
    color: var(--sl-loop-ink);
    text-decoration: none;
}

.stanloop-loop-compact-item {
    grid-template-columns: 28px 1fr auto;
}

.stanloop-loop-resource-item {
    grid-template-columns: 42px 1fr auto;
    padding: 10px;
    border-radius: 13px;
    background: rgba(238, 242, 247, .55);
}

.stanloop-loop-compact-item__icon,
.stanloop-loop-resource-item > span:first-child {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(247, 201, 72, .12);
    color: var(--sl-loop-orange);
    font-weight: 900;
}

.stanloop-loop-resource-item > span:first-child {
    width: 38px;
    height: 38px;
    background: rgba(23, 35, 58, .14);
    color: var(--sl-loop-green-deep);
}

.stanloop-loop-compact-item strong,
.stanloop-loop-resource-item strong {
    display: block;
    color: var(--sl-loop-ink);
    font-size: 13px;
    line-height: 1.2;
}

.stanloop-loop-compact-item small,
.stanloop-loop-resource-item small {
    display: block;
    margin-top: 3px;
    color: var(--sl-loop-muted);
    font-size: 11px;
    line-height: 1.25;
}

.stanloop-loop-compact-item em,
.stanloop-loop-resource-item em {
    color: var(--sl-loop-green-deep);
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.stanloop-loop-accordion-preview a {
    grid-template-columns: 1fr auto;
    padding: 11px 12px;
    border: 1px solid var(--sl-loop-line);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
}

.stanloop-loop-work-preview {
    min-height: 310px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff, #F3F6FA);
}

.stanloop-loop-work-preview__copy {
    position: relative;
    z-index: 1;
    max-width: 72%;
}

.stanloop-loop-work-preview p {
    margin: 12px 0 18px;
    color: var(--sl-loop-muted);
    font-size: 13px;
    line-height: 1.5;
}

.stanloop-loop-work-preview .stanloop-loop-card-button {
    width: auto;
    padding-inline: 18px;
    background: var(--sl-loop-green);
    color: #fff;
}

.stanloop-loop-work-preview img {
    position: absolute;
    right: -20px;
    bottom: -22px;
    width: 165px;
    height: 190px;
    object-fit: cover;
    border-radius: 34px 0 0 0;
    opacity: .92;
}

.stanloop-loop-empty {
    min-height: 120px;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px dashed rgba(23, 35, 58, .32);
    border-radius: 16px;
    color: var(--sl-loop-muted);
    background: rgba(238, 242, 247, .38);
    padding: 18px;
    font-weight: 700;
}


.stanloop-loop-component-card {
    padding: 30px;
    overflow: hidden;
}

.stanloop-loop-component-card > section {
    margin: 0;
}

.stanloop-loop-component-card .stanloop-paths,
.stanloop-loop-component-card .stanloop-video-links,
.stanloop-loop-component-card .stanloop-gallery,
.stanloop-loop-component-card .stanloop-resources,
.stanloop-loop-component-card .stanloop-work-with-me,
.stanloop-loop-component-card .stanloop-ffaq,
.stanloop-loop-component-card .stanloop-broadcasts,
.stanloop-loop-component-card .stanloop-social-links {
    max-width: none;
    width: 100%;
}

.stanloop-loop-component-card .stanloop-paths__grid,
.stanloop-loop-component-card .stanloop-video-links__grid,
.stanloop-loop-component-card .stanloop-gallery__grid,
.stanloop-loop-component-card .stanloop-resources__grid {
    width: 100%;
}

.stanloop-loop-component-heading h2 {
    margin: 0 0 8px;
    color: var(--sl-loop-ink);
    font-size: 30px;
    letter-spacing: -.025em;
}

.stanloop-loop-component-heading p {
    margin: 0 0 22px;
    color: var(--sl-loop-muted);
    font-weight: 700;
}

.stanloop-loop-timeline-list {
    display: grid;
    gap: 14px;
}

.stanloop-loop-timeline-item {
    padding: 18px;
    border: 1px solid var(--sl-loop-line);
    border-radius: 16px;
    background: #fff;
}

.stanloop-loop-timeline-item__action {
    margin-bottom: 8px;
    color: var(--sl-loop-ink);
    font-weight: 800;
}

.stanloop-loop-timeline-item__body {
    color: var(--sl-loop-muted);
    line-height: 1.55;
}

@media (max-width: 1180px) {
    .stanloop-loop-site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .stanloop-loop-site-search {
        display: none;
    }

    .stanloop-loop-site-nav {
        gap: 22px;
    }

    .stanloop-loop-shell {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 20px;
    }

    .stanloop-loop-hero {
        grid-template-columns: 132px 1fr;
    }

    .stanloop-loop-trust-card {
        grid-column: 1 / -1;
    }

    .stanloop-loop-welcome,
    .stanloop-loop-two-col,
    .stanloop-loop-four-col {
        grid-template-columns: 1fr;
    }

    .stanloop-loop-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .stanloop-loop-site-header,
    .stanloop-loop-site-footer {
        width: calc(100% - 24px);
        margin-inline: auto;
    }

    .stanloop-loop-site-header__inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .stanloop-loop-site-nav,
    .stanloop-loop-site-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .stanloop-loop-site-footer__inner {
        grid-template-columns: 1fr 1fr;
        padding: 28px 24px 20px;
    }

    .stanloop-loop-footer-brand {
        grid-column: 1 / -1;
    }

    .stanloop-loop-component-card {
        padding: 22px;
    }

    .stanloop-loop-page {
        padding: 16px 12px 32px;
    }

    .stanloop-loop-shell {
        display: block;
    }

    .stanloop-loop-sidebar__inner {
        position: static;
        margin-bottom: 18px;
    }

    .stanloop-loop-nav {
        display: flex;
        overflow-x: auto;
        padding: 10px;
        scroll-snap-type: x mandatory;
    }

    .stanloop-loop-nav__link {
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: nowrap;
    }

    .stanloop-loop-ad-card {
        min-height: auto;
        padding-top: 72px;
    }

    .stanloop-loop-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 24px;
        text-align: center;
    }

    .stanloop-loop-hero__actions,
    .stanloop-loop-socials__icons {
        justify-content: center;
    }

    .stanloop-loop-hero__avatar {
        width: 132px;
        height: 132px;
    }

    .stanloop-loop-welcome {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .stanloop-loop-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stanloop-loop-stat:nth-child(2) {
        border-right: 0;
    }

    .stanloop-loop-stat:nth-child(1),
    .stanloop-loop-stat:nth-child(2) {
        border-bottom: 1px solid var(--sl-loop-line);
    }

    .stanloop-loop-path-grid,
    .stanloop-loop-link-grid {
        grid-template-columns: 1fr;
    }

    .stanloop-loop-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stanloop-loop-gallery-item--5 {
        grid-column: span 1;
    }

    .stanloop-loop-work-preview__copy {
        max-width: 100%;
    }

    .stanloop-loop-work-preview img {
        display: none;
    }
}


@media (max-width: 560px) {
    .stanloop-loop-site-nav {
        gap: 18px;
    }

    .stanloop-loop-site-login,
    .stanloop-loop-site-start {
        width: 100%;
    }

    .stanloop-loop-site-footer__inner {
        grid-template-columns: 1fr;
    }
}

/* v0.1.72 typography and live-module polish */
.stanloop-loop-page,
.stanloop-loop-page input,
.stanloop-loop-page button,
.stanloop-loop-page select,
.stanloop-loop-page textarea,
.stanloop-loop-page a,
.stanloop-loop-page p,
.stanloop-loop-page h1,
.stanloop-loop-page h2,
.stanloop-loop-page h3,
.stanloop-loop-page h4,
.stanloop-loop-page h5,
.stanloop-loop-page h6,
.stanloop-loop-page small,
.stanloop-loop-page span,
.stanloop-loop-page strong,
.stanloop-loop-page em {
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.stanloop-loop-main {
    font-size: 15px;
    line-height: 1.5;
}

.stanloop-loop-main p {
    font-size: 15px;
    line-height: 1.55;
}

.stanloop-loop-hero {
    min-height: 260px;
    padding: 28px 30px;
    grid-template-columns: 150px minmax(0, 1fr) minmax(275px, 350px);
}

.stanloop-loop-hero__avatar {
    width: 138px;
    height: 138px;
    border-width: 6px;
}

.stanloop-loop-hero__status {
    margin-top: -23px;
    font-size: 11px;
    padding: 6px 12px;
}

.stanloop-loop-hero h1 {
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.04;
    letter-spacing: -.04em;
    margin-bottom: 10px;
}

.stanloop-loop-hero__content p {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.42;
    font-weight: 700;
    margin-bottom: 20px;
}

.stanloop-loop-button,
.stanloop-loop-card-button {
    font-size: 15px;
}

.stanloop-loop-trust-card {
    padding: 20px;
}

.stanloop-loop-trust-card h2 {
    font-size: 18px;
    line-height: 1.2;
}

.stanloop-loop-trust-row {
    font-size: 15px;
    line-height: 1.2;
}

.stanloop-loop-welcome h2 {
    font-size: 29px;
    line-height: 1.15;
}

.stanloop-loop-section-head h2 {
    font-size: 23px;
    line-height: 1.15;
}

.stanloop-loop-path-card h3,
.stanloop-loop-link-card h3,
.stanloop-loop-work-preview h2,
.stanloop-loop-small-section .stanloop-loop-section-head h2 {
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: -.015em;
}

.stanloop-loop-component-card {
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--sl-loop-ink);
}

.stanloop-loop-component-card .stanloop-paths,
.stanloop-loop-component-card .stanloop-video-links,
.stanloop-loop-component-card .stanloop-gallery,
.stanloop-loop-component-card .stanloop-resources,
.stanloop-loop-component-card .stanloop-work-with-me,
.stanloop-loop-component-card .stanloop-ffaq,
.stanloop-loop-component-card .stanloop-broadcasts,
.stanloop-loop-component-card .stanloop-social-links,
.stanloop-loop-component-card .stanloop-ai-assistant {
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    color: var(--sl-loop-ink);
}

.stanloop-loop-component-card .stanloop-paths__header h2,
.stanloop-loop-component-card .stanloop-video-links__header h2,
.stanloop-loop-component-card .stanloop-gallery__header h2,
.stanloop-loop-component-card .stanloop-resources__header h2,
.stanloop-loop-component-card .stanloop-work-with-me__header h2,
.stanloop-loop-component-card .stanloop-ffaq__header h2,
.stanloop-loop-component-card .stanloop-broadcasts__header h2,
.stanloop-loop-component-card .stanloop-ai-assistant h2 {
    margin: 0 0 8px !important;
    color: var(--sl-loop-ink) !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    letter-spacing: -.025em !important;
    font-weight: 800 !important;
}

.stanloop-loop-component-card .stanloop-paths__header p,
.stanloop-loop-component-card .stanloop-video-links__header p,
.stanloop-loop-component-card .stanloop-gallery__header p,
.stanloop-loop-component-card .stanloop-resources__header p,
.stanloop-loop-component-card .stanloop-work-with-me__header p,
.stanloop-loop-component-card .stanloop-ffaq__header p,
.stanloop-loop-component-card .stanloop-broadcasts__header p,
.stanloop-loop-component-card .stanloop-ai-assistant p {
    color: var(--sl-loop-muted) !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

.stanloop-loop-component-card .stanloop-path-card h3,
.stanloop-loop-component-card .stanloop-video-link-card h3,
.stanloop-loop-component-card .stanloop-gallery-card h3,
.stanloop-loop-component-card .stanloop-resource-card h3,
.stanloop-loop-component-card .stanloop-broadcast-card h3,
.stanloop-loop-component-card .stanloop-ffaq-card h3 {
    color: var(--sl-loop-ink) !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    letter-spacing: -.015em !important;
    font-weight: 800 !important;
}

.stanloop-loop-component-card .stanloop-path-card p,
.stanloop-loop-component-card .stanloop-video-link-card p,
.stanloop-loop-component-card .stanloop-gallery-card p,
.stanloop-loop-component-card .stanloop-resource-card p,
.stanloop-loop-component-card .stanloop-broadcast-card p,
.stanloop-loop-component-card .stanloop-ffaq-card p,
.stanloop-loop-component-card .stanloop-path-card__goal,
.stanloop-loop-component-card .stanloop-path-card__intro {
    font-size: 15px !important;
    line-height: 1.5 !important;
}

.stanloop-loop-component-card .stanloop-button,
.stanloop-loop-component-card .stanloop-video-links__filter,
.stanloop-loop-component-card .stanloop-path-pill,
.stanloop-loop-component-card .stanloop-path-step-chip,
.stanloop-loop-component-card .stanloop-path-step-count {
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.stanloop-loop-component-card .stanloop-button {
    border-radius: 13px !important;
    font-weight: 800 !important;
}

@media (max-width: 1180px) {
    .stanloop-loop-hero {
        grid-template-columns: 132px 1fr;
    }
}

@media (max-width: 820px) {
    .stanloop-loop-hero {
        padding: 24px;
    }

    .stanloop-loop-hero h1 {
        font-size: clamp(31px, 9vw, 40px);
    }

    .stanloop-loop-component-card .stanloop-paths__header h2,
    .stanloop-loop-component-card .stanloop-video-links__header h2,
    .stanloop-loop-component-card .stanloop-gallery__header h2,
    .stanloop-loop-component-card .stanloop-resources__header h2,
    .stanloop-loop-component-card .stanloop-work-with-me__header h2,
    .stanloop-loop-component-card .stanloop-ffaq__header h2,
    .stanloop-loop-component-card .stanloop-broadcasts__header h2,
    .stanloop-loop-component-card .stanloop-ai-assistant h2 {
        font-size: 25px !important;
    }
}

/* v0.1.73 readability, verification, and font-weight polish */
.stanloop-loop-site-header,
.stanloop-loop-site-footer,
.stanloop-loop-page,
.stanloop-loop-site-header *,
.stanloop-loop-site-footer *,
.stanloop-loop-page * {
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.stanloop-loop-layout-page {
    color: #141922;
}

.stanloop-loop-page {
    color: #141922;
    font-weight: 500;
}

.stanloop-loop-main,
.stanloop-loop-component-card {
    color: #141922;
    font-weight: 500;
}

.stanloop-loop-main h1,
.stanloop-loop-main h2,
.stanloop-loop-main h3,
.stanloop-loop-main h4,
.stanloop-loop-site-footer h3 {
    color: #141922;
    font-weight: 850;
}

.stanloop-loop-main p,
.stanloop-loop-main small,
.stanloop-loop-site-footer p,
.stanloop-loop-site-footer a,
.stanloop-loop-site-footer__bottom {
    color: #343c4c;
    font-weight: 600;
}

.stanloop-loop-site-footer h3 {
    font-size: 15px;
    letter-spacing: -.01em;
}

.stanloop-loop-site-footer a {
    font-size: 13.5px;
    line-height: 1.45;
}

.stanloop-loop-footer-brand p {
    color: #343c4c;
    font-size: 17px;
    font-weight: 600;
}

.stanloop-loop-site-footer__bottom {
    color: #667085;
    font-weight: 600;
}

.stanloop-loop-hero {
    background:
        radial-gradient(circle at 30% 8%, rgba(255, 255, 255, .26), transparent 23%),
        linear-gradient(115deg, #34455F 0%, #B8C0CC 38%, #F7C948 62%, #E3B42D 100%);
}

.stanloop-loop-hero h1 {
    color: #ffffff;
    font-weight: 850;
    text-shadow: 0 12px 28px rgba(31, 43, 68, .20);
}

.stanloop-loop-verified-check {
    width: .74em;
    height: .74em;
    min-width: .74em;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    vertical-align: .08em;
    background: var(--sl-loop-green-deep);
    color: #fff;
    font-size: .44em;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 7px 16px rgba(23, 35, 58, .28), inset 0 0 0 2px rgba(255, 255, 255, .36);
    text-shadow: none;
}

.stanloop-loop-hero__content p {
    max-width: 610px;
    color: #17233A !important;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 850;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .30);
}

.stanloop-loop-button,
.stanloop-loop-card-button,
.stanloop-loop-nav__link,
.stanloop-loop-site-nav a,
.stanloop-loop-site-login,
.stanloop-loop-site-start {
    font-weight: 850;
}

.stanloop-loop-welcome h2,
.stanloop-loop-section-head h2,
.stanloop-loop-component-heading h2,
.stanloop-loop-component-card .stanloop-paths__header h2,
.stanloop-loop-component-card .stanloop-video-links__header h2,
.stanloop-loop-component-card .stanloop-gallery__header h2,
.stanloop-loop-component-card .stanloop-resources__header h2,
.stanloop-loop-component-card .stanloop-work-with-me__header h2,
.stanloop-loop-component-card .stanloop-ffaq__header h2,
.stanloop-loop-component-card .stanloop-broadcasts__header h2,
.stanloop-loop-component-card .stanloop-ai-assistant h2,
.stanloop-loop-component-card .stanloop-creator-verification h2 {
    color: #141922 !important;
    font-weight: 850 !important;
}

.stanloop-loop-welcome__copy > p,
.stanloop-loop-welcome__media p,
.stanloop-loop-path-card p,
.stanloop-loop-link-card p,
.stanloop-loop-work-preview p,
.stanloop-loop-component-card .stanloop-paths__header p,
.stanloop-loop-component-card .stanloop-video-links__header p,
.stanloop-loop-component-card .stanloop-gallery__header p,
.stanloop-loop-component-card .stanloop-resources__header p,
.stanloop-loop-component-card .stanloop-work-with-me__header p,
.stanloop-loop-component-card .stanloop-ffaq__header p,
.stanloop-loop-component-card .stanloop-broadcasts__header p,
.stanloop-loop-component-card .stanloop-ai-assistant p,
.stanloop-loop-component-card .stanloop-creator-verification p {
    color: #303846 !important;
    font-weight: 550 !important;
}

.stanloop-loop-path-card h3,
.stanloop-loop-link-card h3,
.stanloop-loop-path-card h3 a,
.stanloop-loop-link-card h3 a,
.stanloop-loop-compact-item strong,
.stanloop-loop-resource-item strong,
.stanloop-loop-accordion-preview a,
.stanloop-loop-stat strong,
.stanloop-loop-stat small {
    color: #141922;
    font-weight: 850;
}

.stanloop-loop-tags span,
.stanloop-loop-mini-meta,
.stanloop-loop-section-head a,
.stanloop-loop-compact-item em,
.stanloop-loop-resource-item em {
    font-weight: 850;
}

.stanloop-loop-trust-card h2 {
    color: #141922;
    font-weight: 850;
}

.stanloop-loop-trust-card h2 span {
    color: var(--sl-loop-green-deep);
}

.stanloop-loop-trust-row {
    color: #141922;
    font-weight: 850;
}

.stanloop-loop-trust-row__mark {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
}

.stanloop-loop-trust-row__mark--check {
    color: #fff !important;
    background: var(--sl-loop-green-deep);
    box-shadow: 0 6px 14px rgba(23, 35, 58, .22);
}

.stanloop-loop-trust-row__mark--cross {
    color: #fff !important;
    background: #E3B42D;
    box-shadow: 0 6px 14px rgba(247, 201, 72, .16);
}

.stanloop-loop-trust-row.is-unverified {
    opacity: 1;
}

.stanloop-loop-trust-row.is-unverified > span:nth-child(2) {
    color: #596273;
}

.stanloop-loop-trust-row__verify {
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sl-loop-green-deep);
    background: rgba(23, 35, 58, .12);
    border: 1px solid rgba(23, 35, 58, .30);
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
    white-space: nowrap;
}

.stanloop-loop-trust-row__verify:hover,
.stanloop-loop-trust-row__verify:focus {
    color: #fff;
    background: var(--sl-loop-green-deep);
    text-decoration: none;
}

.stanloop-loop-trust-row.is-pending .stanloop-loop-trust-row__verify {
    color: #8A6700;
    background: rgba(247, 201, 72, .18);
    border-color: rgba(247, 201, 72, .40);
}

.stanloop-loop-component-card .stanloop-creator-verification,
.stanloop-loop-component-card .stanloop-paths,
.stanloop-loop-component-card .stanloop-video-links,
.stanloop-loop-component-card .stanloop-gallery,
.stanloop-loop-component-card .stanloop-resources,
.stanloop-loop-component-card .stanloop-work-with-me,
.stanloop-loop-component-card .stanloop-ffaq,
.stanloop-loop-component-card .stanloop-broadcasts,
.stanloop-loop-component-card .stanloop-social-links,
.stanloop-loop-component-card .stanloop-ai-assistant {
    font-weight: 500 !important;
}

.stanloop-loop-component-card .stanloop-path-card h3,
.stanloop-loop-component-card .stanloop-video-link-card h3,
.stanloop-loop-component-card .stanloop-gallery-card h3,
.stanloop-loop-component-card .stanloop-resource-card h3,
.stanloop-loop-component-card .stanloop-broadcast-card h3,
.stanloop-loop-component-card .stanloop-ffaq-card h3,
.stanloop-loop-component-card .stanloop-creator-verification h3 {
    color: #141922 !important;
    font-weight: 850 !important;
}

.stanloop-loop-component-card .stanloop-path-card p,
.stanloop-loop-component-card .stanloop-video-link-card p,
.stanloop-loop-component-card .stanloop-gallery-card p,
.stanloop-loop-component-card .stanloop-resource-card p,
.stanloop-loop-component-card .stanloop-broadcast-card p,
.stanloop-loop-component-card .stanloop-ffaq-card p,
.stanloop-loop-component-card .stanloop-path-card__goal,
.stanloop-loop-component-card .stanloop-path-card__intro,
.stanloop-loop-component-card .stanloop-creator-verification p,
.stanloop-loop-component-card .stanloop-field,
.stanloop-loop-component-card label {
    color: #303846 !important;
    font-weight: 550 !important;
}


/* v0.1.74 hero readability + nav weight restore */
.stanloop-loop-site-nav a {
    color: #242936 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.stanloop-loop-site-login,
.stanloop-loop-site-start {
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.stanloop-loop-nav__link {
    color: #242936 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1.22 !important;
}

.stanloop-loop-nav__link:hover,
.stanloop-loop-nav__link:focus,
.stanloop-loop-nav__link--active {
    color: var(--sl-loop-green-deep) !important;
}

.stanloop-loop-hero {
    background: linear-gradient(112deg, #34455F 0%, #34455F 56%, #F7C948 100%) !important;
}

.stanloop-loop-hero::before {
    border-color: rgba(255, 255, 255, .24);
}

.stanloop-loop-hero h1 {
    color: #ffffff !important;
    font-size: clamp(36px, 3.25vw, 48px) !important;
    font-weight: 800 !important;
    line-height: 1.04 !important;
    letter-spacing: -.025em !important;
    text-shadow: 0 10px 26px rgba(23, 35, 58, .26) !important;
}

.stanloop-loop-hero__content p {
    color: rgba(255, 255, 255, .97) !important;
    font-size: 17px !important;
    line-height: 1.44 !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 10px rgba(23, 35, 58, .36) !important;
}

.stanloop-loop-verified-check {
    width: .78em !important;
    height: .78em !important;
    min-width: .78em !important;
    vertical-align: .10em !important;
    background: linear-gradient(135deg, #34455F, #17233A) !important;
    color: #ffffff !important;
    font-size: .42em !important;
    line-height: 1 !important;
    box-shadow: 0 8px 16px rgba(23, 35, 58, .28), inset 0 0 0 2px rgba(255, 255, 255, .42) !important;
}

.stanloop-loop-hero__avatar-wrap {
    position: relative;
    align-self: center;
}

.stanloop-loop-hero__status {
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translateX(-50%);
    margin-top: 0 !important;
    min-width: 74px;
    height: 30px;
    padding: 0 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1 !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    z-index: 2;
}

.stanloop-loop-hero__avatar {
    display: block;
}

@media (max-width: 820px) {
    .stanloop-loop-hero h1 {
        font-size: clamp(31px, 9vw, 40px) !important;
    }
}

/* v0.1.75 hero polish, cleaner nav text, creator pill, and follow button support */
.stanloop-loop-site-nav a {
    color: #273142 !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    letter-spacing: .006em !important;
    line-height: 1.35 !important;
}

.stanloop-loop-nav__link {
    color: #273142 !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    letter-spacing: .004em !important;
    line-height: 1.3 !important;
}

.stanloop-loop-site-nav a.is-active,
.stanloop-loop-site-nav a:hover,
.stanloop-loop-site-nav a:focus,
.stanloop-loop-nav__link:hover,
.stanloop-loop-nav__link:focus,
.stanloop-loop-nav__link--active {
    color: var(--sl-loop-green-deep) !important;
}

.stanloop-loop-hero {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .18) 0 1px, transparent 2px),
        radial-gradient(circle at 55% 18%, rgba(255, 255, 255, .16) 0 2px, transparent 3px),
        radial-gradient(circle at 90% 18%, rgba(255, 255, 255, .20), transparent 18%),
        linear-gradient(112deg, #34455F 0%, #34455F 44%, #F7C948 74%, #F7C948 100%) !important;
    box-shadow: 0 22px 54px rgba(23, 35, 58, .14), 0 18px 42px rgba(247, 201, 72, .10) !important;
}

.stanloop-loop-hero::before {
    width: 210px !important;
    height: 210px !important;
    right: -52px !important;
    top: -70px !important;
    border: 2px solid rgba(255, 255, 255, .25) !important;
}

.stanloop-loop-hero::after {
    width: 250px !important;
    height: 90px !important;
    left: 39% !important;
    bottom: 27px !important;
    border-bottom: 3px solid rgba(255, 255, 255, .24) !important;
    border-radius: 50% !important;
}

.stanloop-loop-hero__decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    color: rgba(255, 255, 255, .72);
    text-shadow: 0 10px 24px rgba(23, 35, 58, .14);
}

.stanloop-loop-hero__decor--heart {
    right: 38%;
    top: 58px;
    font-size: 60px;
    line-height: 1;
    transform: rotate(-12deg);
}

.stanloop-loop-hero__decor--sparkle {
    right: 26px;
    top: 70px;
    font-size: 28px;
    line-height: 1;
}

.stanloop-loop-hero__decor--line {
    left: 42px;
    bottom: 43px;
    width: 135px;
    height: 55px;
    border-left: 2px solid rgba(255, 255, 255, .23);
    border-bottom: 2px solid rgba(255, 255, 255, .23);
    border-radius: 0 0 0 80%;
    transform: rotate(-17deg);
}

.stanloop-loop-hero h1 {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: -.028em !important;
    text-shadow: 0 10px 24px rgba(23, 35, 58, .30) !important;
}

.stanloop-loop-hero__content p {
    color: rgba(255, 255, 255, .96) !important;
    font-weight: 700 !important;
    text-shadow: 0 3px 14px rgba(23, 35, 58, .34) !important;
}

.stanloop-loop-verified-check {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border-radius: 999px !important;
    display: inline-grid !important;
    place-items: center !important;
    background: linear-gradient(135deg, #34455F 0%, #17233A 100%) !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    box-shadow: 0 10px 18px rgba(23, 35, 58, .32), inset 0 0 0 2px rgba(255, 255, 255, .42) !important;
    text-shadow: none !important;
    transform: translateY(1px) !important;
}

.stanloop-loop-hero__avatar-wrap {
    overflow: visible !important;
}

.stanloop-loop-hero__status {
    position: absolute !important;
    left: 50% !important;
    bottom: -6px !important;
    transform: translateX(-50%) !important;
    min-width: 78px !important;
    height: 31px !important;
    padding: 0 14px !important;
    border: 2px solid rgba(255, 255, 255, .88) !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #34455F 0%, #17233A 100%) !important;
    color: #fff !important;
    font-size: 11.5px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 22px rgba(23, 35, 58, .28) !important;
    z-index: 4 !important;
}

.stanloop-loop-button--primary,
.stanloop-loop-follow-action [id^="follow-button-"] a,
.stanloop-loop-follow-action [id^="follow-button-"] button,
.stanloop-loop-follow-action .follow-button a,
.stanloop-loop-follow-action .follow-button button {
    background: linear-gradient(135deg, #F7C948 0%, #E3B42D 74%, #F7C948 100%) !important;
    color: #17233A !important;
    border: 1px solid rgba(255, 255, 255, .46) !important;
    box-shadow: 0 14px 28px rgba(247, 201, 72, .28), inset 0 1px 0 rgba(255, 255, 255, .30) !important;
}

.stanloop-loop-button--primary:hover,
.stanloop-loop-button--primary:focus,
.stanloop-loop-follow-action [id^="follow-button-"] a:hover,
.stanloop-loop-follow-action [id^="follow-button-"] button:hover,
.stanloop-loop-follow-action .follow-button a:hover,
.stanloop-loop-follow-action .follow-button button:hover,
.stanloop-loop-follow-action [id^="follow-button-"] a:focus,
.stanloop-loop-follow-action [id^="follow-button-"] button:focus,
.stanloop-loop-follow-action .follow-button a:focus,
.stanloop-loop-follow-action .follow-button button:focus {
    background: linear-gradient(135deg, #F7C948 0%, #F7C948 100%) !important;
    color: #17233A !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.stanloop-loop-follow-action,
.stanloop-loop-follow-action .generic-button,
.stanloop-loop-follow-action .follow-button {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.stanloop-loop-follow-action [id^="follow-button-"] a,
.stanloop-loop-follow-action [id^="follow-button-"] button,
.stanloop-loop-follow-action .follow-button a,
.stanloop-loop-follow-action .follow-button button {
    min-height: 48px !important;
    padding: 0 24px !important;
    border-radius: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    font-weight: 850 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.stanloop-loop-follow-action [id^="follow-button-"].following a,
.stanloop-loop-follow-action [id^="follow-button-"].following button,
.stanloop-loop-follow-action .follow-button.following a,
.stanloop-loop-follow-action .follow-button.following button,
.stanloop-loop-follow-action a.stanloop-following-label,
.stanloop-loop-follow-action button.stanloop-following-label {
    background: linear-gradient(135deg, #F3F6FA 0%, #ffffff 100%) !important;
    color: var(--sl-loop-green-deep) !important;
    border-color: rgba(23, 35, 58, .34) !important;
    box-shadow: 0 12px 24px rgba(23, 35, 58, .16) !important;
}

@media (max-width: 980px) {
    .stanloop-loop-hero__decor--heart,
    .stanloop-loop-hero__decor--sparkle,
    .stanloop-loop-hero__decor--line {
        opacity: .45;
    }
}


/* v0.1.77 StanLoop-native Join state */
.stanloop-loop-button--joined {
    background: linear-gradient(135deg, #FFFCF4 0%, #ffffff 100%) !important;
    color: var(--sl-loop-green-deep) !important;
    border: 1px solid rgba(23, 35, 58, .34) !important;
    box-shadow: 0 12px 24px rgba(23, 35, 58, .16), inset 0 1px 0 rgba(255, 255, 255, .72) !important;
    cursor: default !important;
}

.stanloop-loop-button--joined:hover,
.stanloop-loop-button--joined:focus {
    transform: none !important;
    text-decoration: none !important;
}

/* v0.1.79 home content polish: lighter cards, cleaner lower row, safer Work With Me avatar */
.stanloop-loop-two-col--feature-gallery {
    gap: 26px !important;
}

.stanloop-loop-featured-paths,
.stanloop-loop-gallery-preview,
.stanloop-loop-mentioned-links,
.stanloop-loop-small-section,
.stanloop-loop-work-preview {
    box-shadow: 0 18px 44px rgba(31, 43, 68, .075) !important;
}

.stanloop-loop-featured-paths .stanloop-loop-section-head,
.stanloop-loop-gallery-preview .stanloop-loop-section-head,
.stanloop-loop-mentioned-links .stanloop-loop-section-head {
    margin-bottom: 18px !important;
}

.stanloop-loop-path-card,
.stanloop-loop-link-card {
    border-color: rgba(24, 33, 51, .085) !important;
    box-shadow: 0 10px 24px rgba(31, 43, 68, .045) !important;
}

.stanloop-loop-path-card__body,
.stanloop-loop-link-card__body {
    padding: 14px 15px 15px !important;
}

.stanloop-loop-path-card h3,
.stanloop-loop-link-card h3,
.stanloop-loop-path-card h3 a,
.stanloop-loop-link-card h3 a {
    color: #172033 !important;
    font-size: 16px !important;
    line-height: 1.24 !important;
    font-weight: 700 !important;
    letter-spacing: -.008em !important;
}

.stanloop-loop-path-card h3 a,
.stanloop-loop-link-card h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stanloop-loop-path-card p,
.stanloop-loop-link-card p {
    color: #4a5262 !important;
    font-size: 13px !important;
    line-height: 1.42 !important;
    font-weight: 500 !important;
}

.stanloop-loop-path-card p {
    min-height: 38px !important;
}

.stanloop-loop-link-card p {
    min-height: 36px !important;
}

.stanloop-loop-mini-meta {
    gap: 8px !important;
    margin-bottom: 13px !important;
    color: #5c6576 !important;
    font-size: 11.5px !important;
    line-height: 1.2 !important;
    font-weight: 650 !important;
}

.stanloop-loop-card-button {
    min-height: 40px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.stanloop-loop-gallery-grid {
    grid-auto-rows: 112px !important;
    gap: 11px !important;
}

.stanloop-loop-gallery-item {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .36) !important;
}

.stanloop-loop-link-grid {
    gap: 16px !important;
}

.stanloop-loop-link-card__image {
    height: 124px !important;
}

.stanloop-loop-four-col {
    gap: 20px !important;
    align-items: stretch !important;
}

.stanloop-loop-small-section,
.stanloop-loop-work-preview {
    min-height: 282px !important;
    padding: 21px !important;
}

.stanloop-loop-small-section {
    display: flex !important;
    flex-direction: column !important;
}

.stanloop-loop-small-section .stanloop-loop-section-head {
    margin-bottom: 13px !important;
}

.stanloop-loop-small-section .stanloop-loop-section-head h2,
.stanloop-loop-work-preview h2 {
    font-size: 20px !important;
    line-height: 1.18 !important;
    font-weight: 780 !important;
    letter-spacing: -.014em !important;
}

.stanloop-loop-small-section .stanloop-loop-section-head a {
    font-size: 12px !important;
    font-weight: 700 !important;
}

.stanloop-loop-compact-list,
.stanloop-loop-resource-list,
.stanloop-loop-accordion-preview {
    gap: 9px !important;
}

.stanloop-loop-compact-item {
    grid-template-columns: 28px 1fr auto !important;
    gap: 9px !important;
    min-height: 46px !important;
}

.stanloop-loop-compact-item strong,
.stanloop-loop-resource-item strong {
    color: #182133 !important;
    font-size: 12.5px !important;
    line-height: 1.22 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.stanloop-loop-compact-item small,
.stanloop-loop-resource-item small {
    color: #687285 !important;
    font-size: 10.75px !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
}

.stanloop-loop-compact-item em,
.stanloop-loop-resource-item em {
    font-size: 11.5px !important;
    font-weight: 700 !important;
}

.stanloop-loop-accordion-preview a {
    min-height: 45px !important;
    padding: 10px 12px !important;
    color: #182133 !important;
    font-size: 12.5px !important;
    line-height: 1.28 !important;
    font-weight: 650 !important;
    background: #fff !important;
}

.stanloop-loop-resource-item {
    min-height: 58px !important;
    padding: 10px !important;
    gap: 10px !important;
    background: rgba(238, 242, 247, .62) !important;
}

.stanloop-loop-resource-item > span:first-child {
    width: 36px !important;
    height: 36px !important;
}

.stanloop-loop-work-preview {
    background:
        radial-gradient(circle at 100% 100%, rgba(23, 35, 58, .18), transparent 45%),
        linear-gradient(135deg, #ffffff 0%, #FFFCF4 100%) !important;
}

.stanloop-loop-work-preview__copy {
    max-width: 64% !important;
}

.stanloop-loop-work-preview p {
    color: #4b5363 !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    margin: 10px 0 16px !important;
}

.stanloop-loop-work-preview .stanloop-loop-card-button {
    min-height: 38px !important;
    padding-inline: 16px !important;
    border-radius: 11px !important;
}

.stanloop-loop-work-preview img {
    right: 20px !important;
    bottom: 22px !important;
    width: 116px !important;
    height: 116px !important;
    border-radius: 999px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border: 5px solid rgba(255, 255, 255, .92) !important;
    box-shadow: 0 16px 32px rgba(31, 43, 68, .14) !important;
    opacity: .98 !important;
}

@media (max-width: 1180px) {
    .stanloop-loop-small-section,
    .stanloop-loop-work-preview {
        min-height: auto !important;
    }

    .stanloop-loop-work-preview__copy {
        max-width: 72% !important;
    }
}


/* v0.1.80 mobile Loop polish */
@media (max-width: 820px) {
    body.stanloop-loop-layout-page {
        background: linear-gradient(120deg, rgba(234, 244, 238, .92), rgba(255, 245, 240, .88) 58%, #ffffff 100%) !important;
    }

    .stanloop-loop-site-header {
        width: calc(100% - 18px) !important;
        margin-top: 10px !important;
    }

    .stanloop-loop-site-header__inner {
        min-height: auto !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 13px !important;
        border-radius: 16px !important;
    }

    .stanloop-loop-site-logo {
        font-size: 27px !important;
        justify-self: start !important;
    }

    .stanloop-loop-site-nav {
        width: 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 8px !important;
        padding: 2px 1px 0 !important;
    }

    .stanloop-loop-site-nav a {
        font-size: 12.5px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        padding-bottom: 6px !important;
    }

    .stanloop-loop-site-nav a.is-active::after {
        bottom: 0 !important;
        height: 2px !important;
        width: 22px !important;
    }

    .stanloop-loop-site-search {
        display: none !important;
    }

    .stanloop-loop-site-actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .stanloop-loop-site-login,
    .stanloop-loop-site-start {
        width: 100% !important;
        min-height: 42px !important;
        padding: 0 10px !important;
        border-radius: 12px !important;
        font-size: 14px !important;
        font-weight: 800 !important;
    }

    .stanloop-loop-page {
        padding: 12px 9px 24px !important;
    }

    .stanloop-loop-shell {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .stanloop-loop-sidebar {
        order: 1 !important;
    }

    .stanloop-loop-main {
        order: 2 !important;
        gap: 14px !important;
    }

    .stanloop-loop-sidebar__inner {
        position: static !important;
        top: auto !important;
        gap: 0 !important;
        margin-bottom: 0 !important;
    }

    .stanloop-loop-ad-card {
        display: none !important;
    }

    .stanloop-loop-nav {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        overflow-x: auto !important;
        overscroll-behavior-x: contain !important;
        scroll-snap-type: x proximity !important;
        padding: 8px !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, .95) !important;
        box-shadow: 0 10px 26px rgba(31, 43, 68, .075) !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .stanloop-loop-nav::-webkit-scrollbar {
        display: none !important;
    }

    .stanloop-loop-nav__link {
        flex: 0 0 auto !important;
        min-height: 42px !important;
        padding: 10px 12px !important;
        border-radius: 12px !important;
        font-size: 12.5px !important;
        font-weight: 700 !important;
        gap: 7px !important;
        scroll-snap-align: start !important;
    }

    .stanloop-loop-nav__icon {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px !important;
        border-radius: 8px !important;
        font-size: 12px !important;
    }

    .stanloop-loop-hero {
        min-height: auto !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 18px 16px !important;
        border-radius: 20px !important;
        text-align: center !important;
        background:
            radial-gradient(circle at 15% 12%, rgba(255, 255, 255, .15) 0 1px, transparent 2px),
            radial-gradient(circle at 88% 8%, rgba(255, 255, 255, .20), transparent 18%),
            linear-gradient(145deg, #34455F 0%, #34455F 48%, #F7C948 76%, #F7C948 100%) !important;
    }

    .stanloop-loop-hero::before {
        width: 150px !important;
        height: 150px !important;
        right: -54px !important;
        top: -50px !important;
    }

    .stanloop-loop-hero::after {
        width: 170px !important;
        height: 58px !important;
        left: 38% !important;
        bottom: 20px !important;
    }

    .stanloop-loop-hero__decor--heart {
        right: 28px !important;
        top: 118px !important;
        font-size: 35px !important;
        opacity: .72 !important;
    }

    .stanloop-loop-hero__decor--sparkle,
    .stanloop-loop-hero__decor--line {
        opacity: .42 !important;
    }

    .stanloop-loop-hero__avatar {
        width: 112px !important;
        height: 112px !important;
        border-width: 5px !important;
    }

    .stanloop-loop-hero__status {
        min-width: 68px !important;
        height: 25px !important;
        bottom: -3px !important;
        padding-inline: 10px !important;
        font-size: 10.5px !important;
        box-shadow: 0 8px 16px rgba(23, 35, 58, .22) !important;
    }

    .stanloop-loop-hero h1 {
        justify-content: center !important;
        gap: 7px !important;
        margin-bottom: 8px !important;
        font-size: clamp(29px, 9vw, 37px) !important;
        line-height: 1.05 !important;
        letter-spacing: -.025em !important;
        text-align: center !important;
    }

    .stanloop-loop-verified-check {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        font-size: 10px !important;
    }

    .stanloop-loop-hero__content p {
        max-width: 100% !important;
        margin: 0 auto 15px !important;
        color: rgba(255, 255, 255, .98) !important;
        font-size: 14.5px !important;
        line-height: 1.45 !important;
        font-weight: 700 !important;
        text-shadow: 0 2px 10px rgba(23, 35, 58, .34) !important;
    }

    .stanloop-loop-hero__actions {
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 9px !important;
    }

    .stanloop-loop-button {
        width: 100% !important;
        min-height: 43px !important;
        padding: 0 12px !important;
        border-radius: 12px !important;
        font-size: 13px !important;
        font-weight: 800 !important;
    }

    .stanloop-loop-button--joined {
        font-size: 12.5px !important;
        white-space: nowrap !important;
    }

    .stanloop-loop-trust-card {
        width: 100% !important;
        padding: 15px !important;
        border-radius: 18px !important;
        text-align: left !important;
    }

    .stanloop-loop-trust-card h2 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    .stanloop-loop-trust-row {
        min-height: 38px !important;
        font-size: 13.5px !important;
        gap: 9px !important;
    }

    .stanloop-loop-trust-row img,
    .stanloop-loop-trust-row .stanloop-loop-platform-icon {
        width: 26px !important;
        height: 26px !important;
    }

    .stanloop-loop-socials span {
        font-size: 12.5px !important;
        margin-bottom: 8px !important;
    }

    .stanloop-loop-socials__icons {
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    .stanloop-loop-social-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 13px !important;
    }

    .stanloop-loop-card,
    .stanloop-loop-section,
    .stanloop-loop-component-card {
        border-radius: 20px !important;
    }

    .stanloop-loop-welcome {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 19px !important;
        align-items: start !important;
    }

    .stanloop-loop-welcome h2,
    .stanloop-loop-section-head h2 {
        font-size: 23px !important;
        line-height: 1.14 !important;
        letter-spacing: -.018em !important;
    }

    .stanloop-loop-welcome__copy > p,
    .stanloop-loop-welcome__media p {
        font-size: 13.5px !important;
        line-height: 1.48 !important;
        font-weight: 600 !important;
    }

    .stanloop-loop-tags {
        gap: 8px !important;
        margin-bottom: 16px !important;
    }

    .stanloop-loop-tags span {
        min-height: 33px !important;
        padding: 0 12px !important;
        border-radius: 10px !important;
        font-size: 13px !important;
    }

    .stanloop-loop-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        border-radius: 16px !important;
    }

    .stanloop-loop-stat {
        min-height: 76px !important;
    }

    .stanloop-loop-stat strong {
        font-size: 21px !important;
    }

    .stanloop-loop-stat small {
        font-size: 11.5px !important;
    }

    .stanloop-loop-video-card {
        height: 220px !important;
        border-radius: 16px !important;
    }

    .stanloop-loop-video-card__play {
        width: 58px !important;
        height: 58px !important;
    }

    .stanloop-loop-section {
        padding: 20px 18px !important;
    }

    .stanloop-loop-section-head {
        align-items: center !important;
        gap: 10px !important;
        margin-bottom: 14px !important;
    }

    .stanloop-loop-section-head a {
        font-size: 12.5px !important;
        white-space: nowrap !important;
    }

    .stanloop-loop-two-col,
    .stanloop-loop-four-col {
        gap: 14px !important;
    }

    .stanloop-loop-path-grid,
    .stanloop-loop-link-grid {
        gap: 13px !important;
    }

    .stanloop-loop-path-card__image,
    .stanloop-loop-link-card__image {
        height: 150px !important;
    }

    .stanloop-loop-path-card__body,
    .stanloop-loop-link-card__body {
        padding: 13px 14px 14px !important;
    }

    .stanloop-loop-path-card h3,
    .stanloop-loop-link-card h3,
    .stanloop-loop-path-card h3 a,
    .stanloop-loop-link-card h3 a {
        font-size: 15.5px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
    }

    .stanloop-loop-path-card p,
    .stanloop-loop-link-card p {
        min-height: auto !important;
        font-size: 12.75px !important;
        line-height: 1.42 !important;
    }

    .stanloop-loop-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 92px !important;
        gap: 8px !important;
    }

    .stanloop-loop-gallery-item--5 {
        grid-column: span 2 !important;
    }

    .stanloop-loop-small-section,
    .stanloop-loop-work-preview {
        min-height: auto !important;
        padding: 18px !important;
        border-radius: 20px !important;
    }

    .stanloop-loop-small-section .stanloop-loop-section-head h2,
    .stanloop-loop-work-preview h2 {
        font-size: 20px !important;
    }

    .stanloop-loop-compact-item,
    .stanloop-loop-resource-item,
    .stanloop-loop-accordion-preview a {
        min-height: 48px !important;
    }

    .stanloop-loop-work-preview__copy {
        max-width: 100% !important;
        padding-right: 88px !important;
        min-height: 132px !important;
    }

    .stanloop-loop-work-preview img {
        display: block !important;
        width: 82px !important;
        height: 82px !important;
        right: 18px !important;
        bottom: 18px !important;
        border-width: 4px !important;
    }

    .stanloop-loop-site-footer {
        width: calc(100% - 18px) !important;
        margin-bottom: 18px !important;
        border-radius: 18px !important;
    }

    .stanloop-loop-site-footer__inner {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 24px 22px 18px !important;
    }

    .stanloop-loop-footer-brand p {
        font-size: 15px !important;
    }

    .stanloop-loop-site-footer h3 {
        margin-bottom: 8px !important;
        font-size: 14px !important;
    }

    .stanloop-loop-site-footer a {
        margin: 5px 0 !important;
        font-size: 13px !important;
    }

    .stanloop-loop-site-footer__bottom {
        padding: 14px 18px 18px !important;
        font-size: 11.5px !important;
    }
}

@media (max-width: 420px) {
    .stanloop-loop-site-header__inner {
        padding: 12px !important;
    }

    .stanloop-loop-site-logo {
        font-size: 25px !important;
    }

    .stanloop-loop-site-nav a {
        font-size: 12px !important;
    }

    .stanloop-loop-site-actions {
        grid-template-columns: 1fr !important;
    }

    .stanloop-loop-hero {
        padding: 17px 14px !important;
    }

    .stanloop-loop-hero h1 {
        font-size: clamp(28px, 9vw, 34px) !important;
    }

    .stanloop-loop-hero__actions {
        grid-template-columns: 1fr !important;
        max-width: 260px !important;
    }

    .stanloop-loop-button--joined {
        white-space: normal !important;
    }

    .stanloop-loop-welcome,
    .stanloop-loop-section,
    .stanloop-loop-small-section,
    .stanloop-loop-work-preview {
        padding: 17px !important;
    }

    .stanloop-loop-path-card__image,
    .stanloop-loop-link-card__image {
        height: 138px !important;
    }

    .stanloop-loop-video-card {
        height: 190px !important;
    }
}


/* StanLoop account menu: v0.1.87.2 */
.stanloop-loop-account-menu {
    position: relative;
    z-index: 30;
}

.stanloop-loop-account-menu__toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(23, 35, 58, .38);
    border-radius: 13px;
    background: #fff;
    color: var(--sl-loop-ink, #111827);
    font-family: inherit;
    font-weight: 900;
    line-height: 1;
    padding: 6px 12px 6px 8px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(31, 43, 68, .08);
}

.stanloop-loop-account-menu__toggle:hover,
.stanloop-loop-account-menu__toggle:focus-visible {
    transform: translateY(-1px);
    outline: none;
    border-color: rgba(23, 35, 58, .72);
}

.stanloop-loop-account-menu__avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F3F6FA;
    flex: 0 0 auto;
}

.stanloop-loop-account-menu__avatar img,
.stanloop-loop-account-menu__avatar-img {
    width: 32px !important;
    height: 32px !important;
    display: block;
    border-radius: 999px;
    object-fit: cover;
}

.stanloop-loop-account-menu__name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stanloop-loop-account-menu__chevron {
    color: var(--sl-loop-green-deep, #17233A);
    font-size: 16px;
    transform: translateY(-1px);
}

.stanloop-loop-account-menu__dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 230px;
    border: 1px solid rgba(31, 43, 68, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(31, 43, 68, .16);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.stanloop-loop-account-menu:hover .stanloop-loop-account-menu__dropdown,
.stanloop-loop-account-menu:focus-within .stanloop-loop-account-menu__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.stanloop-loop-account-menu__identity {
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(234, 244, 238, .92), rgba(255, 240, 232, .92));
    padding: 12px;
    margin-bottom: 8px;
}

.stanloop-loop-account-menu__identity strong,
.stanloop-loop-account-menu__identity span {
    display: block;
}

.stanloop-loop-account-menu__identity strong {
    color: var(--sl-loop-ink, #111827);
    font-size: 14px;
    line-height: 1.25;
}

.stanloop-loop-account-menu__identity span {
    color: var(--sl-loop-muted, #586177);
    font-size: 12px;
    margin-top: 3px;
}

.stanloop-loop-account-menu__item {
    display: flex;
    align-items: center;
    min-height: 38px;
    border-radius: 11px;
    padding: 0 12px;
    color: var(--sl-loop-ink, #111827);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

.stanloop-loop-account-menu__item:hover,
.stanloop-loop-account-menu__item:focus {
    background: #F3F6FA;
    color: var(--sl-loop-green-deep, #17233A);
    text-decoration: none;
}

.stanloop-loop-account-menu__item.is-signout {
    color: #F7C948;
    margin-top: 4px;
    border-top: 1px solid rgba(31, 43, 68, .08);
    border-radius: 0 0 11px 11px;
}

@media (max-width: 820px) {
    .stanloop-loop-account-menu {
        width: 100%;
    }

    .stanloop-loop-account-menu__toggle {
        width: 100%;
        justify-content: center;
        min-height: 42px;
        border-radius: 12px;
    }

    .stanloop-loop-account-menu__dropdown {
        left: 0;
        right: auto;
        width: min(100%, 280px);
    }
}

/* v0.1.87.3 account menu stability */
.stanloop-loop-account-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.stanloop-loop-account-menu__dropdown {
    top: calc(100% + 6px);
}

.stanloop-loop-account-menu:hover .stanloop-loop-account-menu__toggle,
.stanloop-loop-account-menu:focus-within .stanloop-loop-account-menu__toggle {
    border-color: rgba(23, 35, 58, .72);
}

/* v0.1.88.4 Fan profile layout */
.stanloop-fan-profile-page .stanloop-fan-hero {
    background: linear-gradient(135deg, #34455F 0%, #34455F 48%, #F7C948 100%);
}

.stanloop-fan-summary-card {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    color: var(--sl-loop-ink, #111827);
    padding: 24px;
    box-shadow: 0 18px 48px rgba(31, 43, 68, .12);
    min-width: 280px;
}

.stanloop-fan-summary-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin: 0 0 16px;
}

.stanloop-fan-summary-card__rows {
    display: grid;
    gap: 10px;
}

.stanloop-fan-summary-card__rows div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 14px;
    background: rgba(234, 244, 238, .78);
    padding: 11px 12px;
}

.stanloop-fan-summary-card__rows span {
    color: var(--sl-loop-muted, #586177);
    font-weight: 800;
    font-size: 13px;
}

.stanloop-fan-summary-card__rows strong {
    color: var(--sl-loop-green-deep, #17233A);
    font-size: 16px;
}

.stanloop-fan-summary-card p {
    color: var(--sl-loop-muted, #586177);
    font-weight: 700;
    line-height: 1.55;
    margin: 16px 0 0;
}

.stanloop-fan-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    gap: 28px;
    align-items: stretch;
}

.stanloop-fan-dashboard__cta {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(234, 244, 238, .94), rgba(255, 240, 232, .94));
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.stanloop-fan-dashboard__cta strong {
    color: var(--sl-loop-ink, #111827);
    font-size: 20px;
    font-weight: 900;
}

.stanloop-fan-dashboard__cta p {
    color: var(--sl-loop-muted, #586177);
    font-weight: 700;
    line-height: 1.55;
    margin: 0;
}

.stanloop-fan-profile-grid .stanloop-saved-items {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.stanloop-fan-profile-grid .stanloop-saved-items > h2,
.stanloop-fan-profile-grid .stanloop-saved-items > p {
    display: none;
}

.stanloop-fan-joined-list {
    display: grid;
    gap: 12px;
}

.stanloop-fan-joined-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(31, 43, 68, .08);
    border-radius: 16px;
    padding: 12px;
    color: var(--sl-loop-ink, #111827);
    text-decoration: none;
    background: #fff;
}

.stanloop-fan-joined-item:hover,
.stanloop-fan-joined-item:focus {
    border-color: rgba(23, 35, 58, .36);
    box-shadow: 0 12px 32px rgba(31, 43, 68, .08);
    text-decoration: none;
}

.stanloop-fan-joined-item img {
    border-radius: 999px;
}

.stanloop-fan-joined-item strong,
.stanloop-fan-joined-item small {
    display: block;
}

.stanloop-fan-joined-item strong {
    font-size: 14px;
    font-weight: 900;
}

.stanloop-fan-joined-item small {
    color: var(--sl-loop-muted, #586177);
    font-size: 12px;
    margin-top: 2px;
}

.stanloop-fan-joined-item em {
    color: var(--sl-loop-green-deep, #17233A);
    font-style: normal;
    font-weight: 900;
}

.stanloop-fan-component-card .stanloop-fan-joined-preview {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 0;
}

@media (max-width: 980px) {
    .stanloop-fan-dashboard {
        grid-template-columns: 1fr;
    }

    .stanloop-fan-summary-card {
        min-width: 0;
    }
}


/* v0.1.92 compact creator context bar for Loop subpages */
.stanloop-loop-context-bar {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 88px;
    margin: 0 0 20px;
    padding: 14px 16px;
    border: 1px solid rgba(23, 35, 58, .18);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 250, 248, .98));
    box-shadow: 0 12px 34px rgba(31, 43, 68, .07);
}

.stanloop-loop-context-bar__identity {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    flex: 1 1 auto;
    color: var(--sl-loop-ink, #111827);
    text-decoration: none;
}

.stanloop-loop-context-bar__identity:hover,
.stanloop-loop-context-bar__identity:focus {
    color: var(--sl-loop-ink, #111827);
    text-decoration: none;
}

.stanloop-loop-context-bar__avatar {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: 999px;
    box-shadow: 0 5px 18px rgba(31, 43, 68, .14);
}

.stanloop-loop-context-bar__copy {
    display: block;
    min-width: 0;
}

.stanloop-loop-context-bar__copy strong {
    display: block;
    overflow: hidden;
    color: var(--sl-loop-ink, #111827);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stanloop-loop-context-bar__bio {
    display: block;
    max-width: 560px;
    margin-top: 4px;
    overflow: hidden;
    color: var(--sl-loop-muted, #586177);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stanloop-loop-context-bar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
}

.stanloop-loop-context-action,
.stanloop-loop-context-bar__join .stanloop-loop-button,
.stanloop-loop-context-more > summary {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    margin: 0;
    padding: 9px 13px;
    border: 1px solid rgba(23, 35, 58, .22);
    border-radius: 12px;
    background: #fff;
    color: var(--sl-loop-ink, #111827);
    box-shadow: none;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.stanloop-loop-context-action:hover,
.stanloop-loop-context-action:focus,
.stanloop-loop-context-bar__join .stanloop-loop-button:hover,
.stanloop-loop-context-bar__join .stanloop-loop-button:focus,
.stanloop-loop-context-more > summary:hover,
.stanloop-loop-context-more > summary:focus {
    border-color: rgba(23, 35, 58, .45);
    background: #FFFCF4;
    color: var(--sl-loop-green-deep, #17233A);
    text-decoration: none;
}

.stanloop-loop-context-action--home,
.stanloop-loop-context-bar__join .stanloop-loop-button--primary {
    border-color: var(--sl-loop-green, #17233A);
    background: var(--sl-loop-green, #17233A);
    color: #fff;
}

.stanloop-loop-context-action--home:hover,
.stanloop-loop-context-action--home:focus,
.stanloop-loop-context-bar__join .stanloop-loop-button--primary:hover,
.stanloop-loop-context-bar__join .stanloop-loop-button--primary:focus {
    border-color: var(--sl-loop-green-deep, #17233A);
    background: var(--sl-loop-green-deep, #17233A);
    color: #fff;
}

.stanloop-loop-context-bar__join .stanloop-loop-button--joined {
    border-color: rgba(23, 35, 58, .26);
    background: #F3F6FA;
    color: var(--sl-loop-green-deep, #17233A);
}

.stanloop-loop-context-more {
    position: relative;
}

.stanloop-loop-context-more > summary {
    width: 40px;
    padding: 0;
    cursor: pointer;
    list-style: none;
}

.stanloop-loop-context-more > summary::-webkit-details-marker {
    display: none;
}

.stanloop-loop-context-more__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 36px));
    padding: 14px;
    border: 1px solid rgba(31, 43, 68, .1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(31, 43, 68, .16);
}

.stanloop-loop-context-more__title,
.stanloop-loop-context-more__trust {
    display: block;
}

.stanloop-loop-context-more__title {
    color: var(--sl-loop-ink, #111827);
    font-size: 14px;
    font-weight: 900;
}

.stanloop-loop-context-more__trust {
    margin-top: 6px;
    color: var(--sl-loop-green-deep, #17233A);
    font-size: 12px;
    font-weight: 800;
}

.stanloop-loop-context-more__socials {
    display: grid;
    gap: 7px;
    margin-top: 12px;
}

.stanloop-loop-context-more__socials a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #FFFCF4;
    color: var(--sl-loop-ink, #111827);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.stanloop-loop-context-more__socials a:hover,
.stanloop-loop-context-more__socials a:focus {
    background: #F3F6FA;
    color: var(--sl-loop-green-deep, #17233A);
    text-decoration: none;
}

@media (max-width: 1100px) {
    .stanloop-loop-context-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .stanloop-loop-context-bar__actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .stanloop-loop-context-bar {
        min-height: 0;
        padding: 12px;
        border-radius: 18px;
    }

    .stanloop-loop-context-bar__avatar {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .stanloop-loop-context-bar__copy strong {
        font-size: 16px;
    }

    .stanloop-loop-context-bar__bio {
        max-width: calc(100vw - 150px);
        font-size: 12px;
    }

    .stanloop-loop-context-bar__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
    }

    .stanloop-loop-context-action,
    .stanloop-loop-context-bar__join .stanloop-loop-button {
        min-width: 0;
        padding-inline: 9px;
    }

    .stanloop-loop-context-action--home {
        flex: 1 1 138px;
    }

    .stanloop-loop-context-bar__join {
        display: inline-flex;
        flex: 1 1 118px;
    }

    .stanloop-loop-context-bar__join .stanloop-loop-button {
        width: 100%;
    }

    .stanloop-loop-context-bar__actions > .stanloop-loop-context-action:not(.stanloop-loop-context-action--home) {
        flex: 1 1 108px;
    }

    .stanloop-loop-context-more {
        flex: 0 0 40px;
    }

    .stanloop-loop-context-more__panel {
        right: 0;
    }
}


/* v0.1.93: tighter subpage fold and dismissible creator-details popover. */
.stanloop-loop-page:not([data-stanloop-loop-context="home"]) .stanloop-loop-main {
    gap: 12px;
}

.stanloop-loop-page:not([data-stanloop-loop-context="home"]) .stanloop-loop-context-bar {
    margin-bottom: 0;
}

.stanloop-loop-context-more[open] > summary {
    border-color: rgba(23, 35, 58, .45);
    background: #FFFCF4;
    color: var(--sl-loop-green-deep, #17233A);
}

@media (max-width: 640px) {
    .stanloop-loop-page:not([data-stanloop-loop-context="home"]) .stanloop-loop-main {
        gap: 10px !important;
    }
}


/* v0.1.97 — account menu must float above compact creator header. */
.stanloop-loop-topbar,.stanloop-loop-site-header{position:relative;z-index:500!important;overflow:visible!important}
.stanloop-loop-account-menu{z-index:10020!important}
.stanloop-loop-account-menu__dropdown{z-index:10030!important;top:calc(100% + 2px)!important}
.stanloop-loop-account-menu::after{height:10px!important}
.stanloop-loop-compact-creator,.stanloop-loop-creator-context{position:relative;z-index:20!important}

/* v0.2.02 — Root-level mobile width containment for Path View. */
@media (max-width: 760px) {
    html,
    body,
    body.stanloop-loop-layout-page {
        max-width: 100% !important;
        overflow-x: clip !important;
    }

    .stanloop-loop-page,
    .stanloop-loop-shell,
    .stanloop-loop-main,
    .stanloop-loop-component-card,
    .stanloop-loop-component-card > section,
    .stanloop-loop-component-card .stanloop-path-detail {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .stanloop-loop-page {
        padding-inline: 8px !important;
        overflow-x: clip !important;
    }

    .stanloop-loop-shell,
    .stanloop-loop-main {
        overflow: visible !important;
    }

    .stanloop-loop-component-card:has(.stanloop-path-detail) {
        padding: 4px !important;
        margin: 0 !important;
        overflow: clip !important;
    }
}


/* v0.2.64: six-item public navigation remains usable on narrow screens. */
@media (max-width: 820px) {
    .stanloop-loop-site-nav {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .stanloop-loop-site-nav::-webkit-scrollbar {
        display: none;
    }

    .stanloop-loop-site-nav a {
        flex: 0 0 auto !important;
        padding-inline: 3px;
    }
}

/* v0.3.05 — Creator Paths hover submenu */
.stanloop-loop-nav__item {
    position: relative;
    min-width: 0;
}
.stanloop-loop-nav__submenu-caret {
    margin-left: auto;
    color: #77836f;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    transition: transform .16s ease, color .16s ease;
}
.stanloop-loop-nav__item--has-children:hover > .stanloop-loop-nav__link .stanloop-loop-nav__submenu-caret,
.stanloop-loop-nav__item--has-children:focus-within > .stanloop-loop-nav__link .stanloop-loop-nav__submenu-caret {
    color: var(--sl-loop-green-deep);
    transform: rotate(90deg);
}
.stanloop-loop-nav__subnav {
    position: absolute;
    z-index: 40;
    top: calc(100% - 3px);
    left: 38px;
    right: 7px;
    display: grid;
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(23, 35, 58, .22);
    border-radius: 12px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 12px 28px rgba(23, 35, 58, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}
.stanloop-loop-nav__item--has-children:hover > .stanloop-loop-nav__subnav,
.stanloop-loop-nav__item--has-children:focus-within > .stanloop-loop-nav__subnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.stanloop-loop-nav__sublink {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #4f5f49;
    background: #FFFCF4;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}
.stanloop-loop-nav__sublink:hover,
.stanloop-loop-nav__sublink:focus,
.stanloop-loop-nav__sublink--active {
    border-color: rgba(23, 35, 58, .28);
    color: var(--sl-loop-green-deep);
    background: #F3F6FA;
    text-decoration: none;
}
@media (max-width: 980px) {
    .stanloop-loop-nav__item {
        flex: 0 0 auto;
    }
    .stanloop-loop-nav__submenu-caret {
        display: none;
    }
    .stanloop-loop-nav__subnav {
        top: calc(100% + 4px);
        left: 0;
        right: auto;
        min-width: 148px;
    }
}


/* v0.3.09 — corrected Purple Palm-style directional header behaviour.
 * The live reference uses a 300ms transform, shows inside the first 80px,
 * hides on downward scrolling, and shows immediately on upward scrolling or
 * when a desktop pointer moves inside the top 80px of the browser content.
 * The header itself moves completely beyond the viewport. A separate,
 * pointer-transparent 12px edge mask prevents the rounded top of the next
 * content card from appearing as a false header strip while hidden. */
:root {
    --sl-smart-header-admin-offset: 0px;
}

body.admin-bar {
    --sl-smart-header-admin-offset: 32px;
}

.stanloop-smart-header {
    --sl-smart-header-hide-overrun: 48px;
    will-change: transform;
    transform: translateY(0);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1) !important;
}

.stanloop-loop-site-header.stanloop-smart-header {
    position: sticky !important;
    top: calc(var(--sl-smart-header-admin-offset, 0px) + 10px) !important;
    z-index: 10050 !important;
}

.stanloop-path-workspace-header.stanloop-smart-header,
.stanloop-broadcast-workspace-header.stanloop-smart-header,
.stanloop-wwm-workspace-header.stanloop-smart-header {
    position: sticky !important;
    top: var(--sl-smart-header-admin-offset, 0px) !important;
    z-index: 10050 !important;
}

.stanloop-smart-header.is-stanloop-smart-hidden {
    transform: translateY(calc(-100% - var(--sl-smart-header-hide-overrun, 48px))) !important;
    pointer-events: none;
}

/* The viewport-edge mask is deliberately independent from the moving header.
 * It covers only the first 12px of page content while the header is hidden,
 * stays below the returning header, and never intercepts mouse or touch input. */
.stanloop-smart-header-edge-mask {
    position: fixed;
    top: var(--sl-smart-header-admin-offset, 0px);
    right: 0;
    left: 0;
    height: 12px;
    z-index: 10049;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(255, 255, 255, .985);
}

.stanloop-smart-header-edge-mask--public {
    background: linear-gradient(
        110deg,
        rgba(238, 242, 247, .995),
        rgba(255, 245, 240, .995) 45%,
        rgba(255, 255, 255, .998)
    );
}

.stanloop-smart-header-edge-mask--workspace {
    background: rgba(255, 255, 255, .992);
}

body.stanloop-smart-header-is-hidden .stanloop-smart-header-edge-mask {
    visibility: visible;
    opacity: 1;
}

/* Path Studio has a second sticky toolbar. When the outer Studio header is
 * hidden, remove its reserved sticky offset so the toolbar uses the released
 * viewport space without changing Path data or editor state. */
body.stanloop-smart-header-is-hidden {
    --slps-workspace-header-height: 0px;
    --slps-sticky-stack-bottom: calc(
        var(--slps-admin-bar-height, 0px) +
        var(--slps-editor-toolbar-height, 64px)
    );
}

body.stanloop-smart-header-is-hidden .stanloop-path-studio-editor__toolbar {
    top: var(--slps-admin-bar-height, 0px) !important;
}

.stanloop-path-studio-editor__toolbar {
    transition: top .3s cubic-bezier(.4, 0, .2, 1);
}

@media (max-width: 782px) {
    body.admin-bar {
        --sl-smart-header-admin-offset: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stanloop-smart-header,
    .stanloop-path-studio-editor__toolbar {
        transition-duration: .01ms !important;
    }
}

/* v0.1.4 — lighter Loop identity header and refined Covozi wordmark.
 * Live v0.1.3 review showed the creator profile band carrying more visual
 * weight than the predominantly white public site. This final cascade keeps
 * the approved Deep Jade + Warm Apricot identity while moving the header back
 * to a light, low-fatigue surface and restoring jade as the main action. */
.stanloop-loop-site-logo span {
    color: #17233A !important;
}

.stanloop-loop-site-logo strong {
    color: #F7C948 !important;
}

.stanloop-loop-hero {
    background:
        radial-gradient(circle at 12% 10%, rgba(23, 35, 58, .10), transparent 30%),
        radial-gradient(circle at 90% 12%, rgba(247, 201, 72, .12), transparent 31%),
        linear-gradient(112deg, #F3F6FA 0%, #F8FBF9 48%, #FFF0B5 100%) !important;
    border-color: rgba(23, 35, 58, .12) !important;
    box-shadow: 0 20px 48px rgba(31, 43, 68, .085), 0 12px 32px rgba(200, 78, 67, .045) !important;
}

.stanloop-loop-hero::before {
    border-color: rgba(200, 78, 67, .18) !important;
}

.stanloop-loop-hero::after {
    border-bottom-color: rgba(23, 35, 58, .17) !important;
}

.stanloop-loop-hero__decor {
    color: rgba(23, 35, 58, .22) !important;
    text-shadow: none !important;
}

.stanloop-loop-hero__decor--sparkle {
    color: rgba(200, 78, 67, .25) !important;
}

.stanloop-loop-hero__decor--line {
    border-left-color: rgba(23, 35, 58, .18) !important;
    border-bottom-color: rgba(23, 35, 58, .18) !important;
}

.stanloop-loop-hero h1 {
    color: #17212B !important;
    text-shadow: none !important;
}

.stanloop-loop-hero__content p {
    color: #43505B !important;
    text-shadow: none !important;
}

.stanloop-loop-hero__avatar {
    border-color: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 14px 30px rgba(31, 43, 68, .12) !important;
}

.stanloop-loop-trust-card {
    background: rgba(255, 255, 255, .94) !important;
    border-color: rgba(23, 35, 58, .10) !important;
    box-shadow: 0 15px 34px rgba(31, 43, 68, .085) !important;
}

.stanloop-loop-button--primary {
    background: linear-gradient(135deg, #17233A 0%, #17233A 100%) !important;
    color: #ffffff !important;
    border-color: rgba(23, 35, 58, .34) !important;
    box-shadow: 0 12px 24px rgba(23, 35, 58, .22) !important;
}

.stanloop-loop-button--primary:hover,
.stanloop-loop-button--primary:focus {
    background: #17233A !important;
    color: #ffffff !important;
}

.stanloop-loop-follow-action [id^="follow-button-"] a,
.stanloop-loop-follow-action [id^="follow-button-"] button,
.stanloop-loop-follow-action .follow-button a,
.stanloop-loop-follow-action .follow-button button {
    background: linear-gradient(135deg, #F7C948 0%, #C79200 100%) !important;
    box-shadow: 0 12px 24px rgba(200, 78, 67, .20) !important;
}

.stanloop-loop-follow-action [id^="follow-button-"] a:hover,
.stanloop-loop-follow-action [id^="follow-button-"] button:hover,
.stanloop-loop-follow-action .follow-button a:hover,
.stanloop-loop-follow-action .follow-button button:hover,
.stanloop-loop-follow-action [id^="follow-button-"] a:focus,
.stanloop-loop-follow-action [id^="follow-button-"] button:focus,
.stanloop-loop-follow-action .follow-button a:focus,
.stanloop-loop-follow-action .follow-button button:focus {
    background: #C79200 !important;
}



/* v0.1.5 — mockup-led wordmark and balanced Loop identity colour.
 * The interlocking two-ring mark mirrors the approved homepage mockup while
 * preserving the existing accessible text link and all compatibility markup.
 * The profile band moves halfway between v0.1.3's strong colour and v0.1.4's
 * overly pale treatment. */
.stanloop-loop-site-logo {
    gap: 8px !important;
    align-items: center !important;
    letter-spacing: -.045em !important;
}

.stanloop-loop-site-logo::before {
    content: "";
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle cx='11.25' cy='16' r='8.15' fill='none' stroke='%23287A5A' stroke-width='3.25'/%3E%3Ccircle cx='20.75' cy='16' r='8.15' fill='none' stroke='%23F36F61' stroke-width='3.25'/%3E%3Cpath d='M16 9.65a8.15 8.15 0 0 0 0 12.7' fill='none' stroke='%23FAF9F6' stroke-width='3.8'/%3E%3C/svg%3E");
}

.stanloop-loop-site-logo span,
.stanloop-loop-site-logo strong {
    color: #17212B !important;
}

.stanloop-loop-site-logo strong {
    font-weight: 900 !important;
}

.stanloop-loop-hero {
    background:
        radial-gradient(circle at 11% 10%, rgba(23, 35, 58, .17), transparent 31%),
        radial-gradient(circle at 91% 10%, rgba(247, 201, 72, .19), transparent 32%),
        linear-gradient(112deg, #DDEEE5 0%, #F7FAF8 48%, #FFE3D6 100%) !important;
    border-color: rgba(23, 35, 58, .15) !important;
    box-shadow: 0 20px 46px rgba(31, 43, 68, .09), 0 12px 30px rgba(200, 78, 67, .055) !important;
}

.stanloop-loop-hero::before {
    border-color: rgba(200, 78, 67, .23) !important;
}

.stanloop-loop-hero::after {
    border-bottom-color: rgba(23, 35, 58, .22) !important;
}

.stanloop-loop-hero__decor {
    color: rgba(23, 35, 58, .28) !important;
}

.stanloop-loop-hero__decor--sparkle {
    color: rgba(200, 78, 67, .32) !important;
}

.stanloop-loop-hero__decor--line {
    border-left-color: rgba(23, 35, 58, .23) !important;
    border-bottom-color: rgba(23, 35, 58, .23) !important;
}

.stanloop-loop-trust-card {
    background: rgba(255, 255, 255, .96) !important;
    border-color: rgba(23, 35, 58, .12) !important;
    box-shadow: 0 15px 34px rgba(31, 43, 68, .09) !important;
}

@media (max-width: 640px) {
    .stanloop-loop-site-logo {
        gap: 6px !important;
    }

    .stanloop-loop-site-logo::before {
        flex-basis: 22px;
        width: 22px;
        height: 22px;
    }
}


/* v0.1.6 — brand wordmark correction and fresher profile header.
 * Fixes the unintended visual split in the wordmark, colours Cov / ozi to match
 * the approved site palette, and lifts the Loop profile header with a brighter
 * leafy green + soft blossom atmosphere while preserving readable text. */
.stanloop-loop-site-logo {
    gap: 0 !important;
    align-items: center !important;
    letter-spacing: -.045em !important;
}

.stanloop-loop-site-logo::before {
    content: "";
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 32'%3E%3Ccircle cx='12' cy='16' r='8.8' fill='none' stroke='%23287A5A' stroke-width='3.45'/%3E%3Ccircle cx='22.8' cy='16' r='8.8' fill='none' stroke='%23F36F61' stroke-width='3.45'/%3E%3Cpath d='M17.4 9.25a8.82 8.82 0 0 0 0 13.5' fill='none' stroke='%23FFF9F5' stroke-width='4.05' stroke-linecap='round'/%3E%3C/svg%3E");
}

.stanloop-loop-site-logo span {
    color: #17233A !important;
    font-weight: 900 !important;
}

.stanloop-loop-site-logo strong {
    color: #F7C948 !important;
    font-weight: 900 !important;
    margin-left: -0.02em !important;
}

.stanloop-loop-hero {
    background:
        radial-gradient(circle at 10% 12%, rgba(136, 212, 95, .28), transparent 33%),
        radial-gradient(circle at 88% 12%, rgba(244, 176, 196, .22), transparent 31%),
        linear-gradient(112deg, #ECF8E3 0%, #FAFCF8 48%, #FBEAF1 100%) !important;
    border-color: rgba(66, 143, 87, .17) !important;
    box-shadow: 0 22px 48px rgba(31, 43, 68, .085), 0 12px 28px rgba(225, 134, 166, .055) !important;
}

.stanloop-loop-hero::before {
    border-color: rgba(238, 157, 184, .28) !important;
}

.stanloop-loop-hero::after {
    border-bottom-color: rgba(84, 166, 101, .24) !important;
}

.stanloop-loop-hero__decor {
    color: rgba(66, 143, 87, .28) !important;
}

.stanloop-loop-hero__decor--sparkle {
    color: rgba(236, 149, 176, .34) !important;
}

.stanloop-loop-hero__decor--line {
    border-left-color: rgba(84, 166, 101, .24) !important;
    border-bottom-color: rgba(84, 166, 101, .24) !important;
}

.stanloop-loop-trust-card {
    background: rgba(255, 255, 255, .97) !important;
    border-color: rgba(66, 143, 87, .12) !important;
    box-shadow: 0 16px 36px rgba(31, 43, 68, .08) !important;
}

@media (max-width: 640px) {
    .stanloop-loop-site-logo::before {
        flex-basis: 23px;
        width: 23px;
        height: 23px;
        margin-right: 7px;
    }
}


/* v0.1.9 — leafy Loop identity header and Coral Orange secondary system.
 * The Loop profile header mirrors the approved mockup with subtle leafy green
 * and blossom foliage, while Coral Orange becomes the shared secondary accent.
 * Primary actions remain Deep Jade; secondary actions use the accessible coral
 * solid and its brighter accent family. */
.stanloop-loop-site-logo span {
    color: #17233A !important;
}

.stanloop-loop-site-logo strong {
    color: #F7C948 !important;
}

.stanloop-loop-site-logo::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 32'%3E%3Ccircle cx='12' cy='16' r='8.8' fill='none' stroke='%23287A5A' stroke-width='3.45'/%3E%3Ccircle cx='22.8' cy='16' r='8.8' fill='none' stroke='%23F36F61' stroke-width='3.45'/%3E%3Cpath d='M17.4 9.25a8.82 8.82 0 0 0 0 13.5' fill='none' stroke='%23FFF9F7' stroke-width='4.05' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

.stanloop-loop-hero {
    background:
        url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20260%20190%22%3E%0A%3Cg%20fill%3D%22none%22%20stroke%3D%22%235DAE58%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.26%22%3E%0A%3Cpath%20d%3D%22M28%20184C42%20128%2076%2078%20126%2024%22%2F%3E%3Cpath%20d%3D%22M56%20178C78%20126%20112%2088%20158%2056%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20fill%3D%22%237BCB62%22%20opacity%3D%22.24%22%3E%0A%3Cellipse%20cx%3D%2252%22%20cy%3D%22142%22%20rx%3D%2217%22%20ry%3D%2243%22%20transform%3D%22rotate%28-37%2052%20142%29%22%2F%3E%0A%3Cellipse%20cx%3D%2278%22%20cy%3D%22112%22%20rx%3D%2216%22%20ry%3D%2239%22%20transform%3D%22rotate%2831%2078%20112%29%22%2F%3E%0A%3Cellipse%20cx%3D%2299%22%20cy%3D%2281%22%20rx%3D%2215%22%20ry%3D%2236%22%20transform%3D%22rotate%28-31%2099%2081%29%22%2F%3E%0A%3Cellipse%20cx%3D%22127%22%20cy%3D%2255%22%20rx%3D%2214%22%20ry%3D%2234%22%20transform%3D%22rotate%2835%20127%2055%29%22%2F%3E%0A%3Cellipse%20cx%3D%22105%22%20cy%3D%22142%22%20rx%3D%2215%22%20ry%3D%2236%22%20transform%3D%22rotate%28-42%20105%20142%29%22%2F%3E%0A%3Cellipse%20cx%3D%22137%22%20cy%3D%22111%22%20rx%3D%2214%22%20ry%3D%2234%22%20transform%3D%22rotate%2837%20137%20111%29%22%2F%3E%0A%3Cellipse%20cx%3D%22166%22%20cy%3D%2281%22%20rx%3D%2213%22%20ry%3D%2231%22%20transform%3D%22rotate%28-34%20166%2081%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20fill%3D%22%23B8E68A%22%20opacity%3D%22.25%22%3E%0A%3Cellipse%20cx%3D%2229%22%20cy%3D%22166%22%20rx%3D%2213%22%20ry%3D%2230%22%20transform%3D%22rotate%28-45%2029%20166%29%22%2F%3E%0A%3Cellipse%20cx%3D%22151%22%20cy%3D%2237%22%20rx%3D%2212%22%20ry%3D%2228%22%20transform%3D%22rotate%2842%20151%2037%29%22%2F%3E%0A%3C%2Fg%3E%3C%2Fsvg%3E") left center / 300px 100% no-repeat,
        url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20270%20190%22%3E%0A%3Cg%20fill%3D%22none%22%20stroke%3D%22%23E58AA1%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.24%22%3E%0A%3Cpath%20d%3D%22M244%20184C229%20130%20198%2082%20150%2028%22%2F%3E%3Cpath%20d%3D%22M214%20180C191%20130%20160%2092%20116%2060%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20fill%3D%22%23F1A4B7%22%20opacity%3D%22.22%22%3E%0A%3Cellipse%20cx%3D%22221%22%20cy%3D%22145%22%20rx%3D%2217%22%20ry%3D%2242%22%20transform%3D%22rotate%2838%20221%20145%29%22%2F%3E%0A%3Cellipse%20cx%3D%22195%22%20cy%3D%22114%22%20rx%3D%2216%22%20ry%3D%2238%22%20transform%3D%22rotate%28-32%20195%20114%29%22%2F%3E%0A%3Cellipse%20cx%3D%22174%22%20cy%3D%2284%22%20rx%3D%2215%22%20ry%3D%2235%22%20transform%3D%22rotate%2831%20174%2084%29%22%2F%3E%0A%3Cellipse%20cx%3D%22147%22%20cy%3D%2257%22%20rx%3D%2214%22%20ry%3D%2233%22%20transform%3D%22rotate%28-36%20147%2057%29%22%2F%3E%0A%3Cellipse%20cx%3D%22167%22%20cy%3D%22143%22%20rx%3D%2215%22%20ry%3D%2235%22%20transform%3D%22rotate%2843%20167%20143%29%22%2F%3E%0A%3Cellipse%20cx%3D%22137%22%20cy%3D%22113%22%20rx%3D%2214%22%20ry%3D%2233%22%20transform%3D%22rotate%28-38%20137%20113%29%22%2F%3E%0A%3Cellipse%20cx%3D%22108%22%20cy%3D%2284%22%20rx%3D%2213%22%20ry%3D%2230%22%20transform%3D%22rotate%2835%20108%2084%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20fill%3D%22%23F7C5D1%22%20opacity%3D%22.26%22%3E%0A%3Cellipse%20cx%3D%22246%22%20cy%3D%22168%22%20rx%3D%2213%22%20ry%3D%2229%22%20transform%3D%22rotate%2846%20246%20168%29%22%2F%3E%0A%3Cellipse%20cx%3D%22124%22%20cy%3D%2239%22%20rx%3D%2212%22%20ry%3D%2227%22%20transform%3D%22rotate%28-41%20124%2039%29%22%2F%3E%0A%3C%2Fg%3E%3C%2Fsvg%3E") right center / 310px 100% no-repeat,
        radial-gradient(circle at 15% 15%, rgba(145, 218, 94, .25), transparent 34%),
        radial-gradient(circle at 88% 14%, rgba(247, 201, 72, .18), transparent 32%),
        linear-gradient(112deg, #EAF8D9 0%, #FBFDF8 49%, #FDE7ED 100%) !important;
    border-color: rgba(72, 149, 82, .16) !important;
    box-shadow: 0 22px 48px rgba(31, 43, 68, .085), 0 12px 28px rgba(200, 78, 67, .055) !important;
}

.stanloop-loop-hero::before {
    border-color: rgba(247, 201, 72, .27) !important;
}

.stanloop-loop-hero::after {
    border-bottom-color: rgba(72, 149, 82, .24) !important;
}

.stanloop-loop-hero__decor {
    color: rgba(72, 149, 82, .26) !important;
}

.stanloop-loop-hero__decor--sparkle {
    color: rgba(247, 201, 72, .33) !important;
}

.stanloop-loop-hero__decor--line {
    border-left-color: rgba(72, 149, 82, .23) !important;
    border-bottom-color: rgba(72, 149, 82, .23) !important;
}

.stanloop-loop-follow-action [id^="follow-button-"] a,
.stanloop-loop-follow-action [id^="follow-button-"] button,
.stanloop-loop-follow-action .follow-button a,
.stanloop-loop-follow-action .follow-button button {
    background: linear-gradient(135deg, #F7C948 0%, #C79200 100%) !important;
    border-color: rgba(169, 63, 54, .30) !important;
    color: #17233A !important;
    box-shadow: 0 12px 24px rgba(200, 78, 67, .21) !important;
}

.stanloop-loop-follow-action [id^="follow-button-"] a:hover,
.stanloop-loop-follow-action [id^="follow-button-"] button:hover,
.stanloop-loop-follow-action .follow-button a:hover,
.stanloop-loop-follow-action .follow-button button:hover,
.stanloop-loop-follow-action [id^="follow-button-"] a:focus,
.stanloop-loop-follow-action [id^="follow-button-"] button:focus,
.stanloop-loop-follow-action .follow-button a:focus,
.stanloop-loop-follow-action .follow-button button:focus {
    background: #C79200 !important;
}

@media (max-width: 760px) {
    .stanloop-loop-hero {
        background:
            url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20260%20190%22%3E%0A%3Cg%20fill%3D%22none%22%20stroke%3D%22%235DAE58%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.26%22%3E%0A%3Cpath%20d%3D%22M28%20184C42%20128%2076%2078%20126%2024%22%2F%3E%3Cpath%20d%3D%22M56%20178C78%20126%20112%2088%20158%2056%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20fill%3D%22%237BCB62%22%20opacity%3D%22.24%22%3E%0A%3Cellipse%20cx%3D%2252%22%20cy%3D%22142%22%20rx%3D%2217%22%20ry%3D%2243%22%20transform%3D%22rotate%28-37%2052%20142%29%22%2F%3E%0A%3Cellipse%20cx%3D%2278%22%20cy%3D%22112%22%20rx%3D%2216%22%20ry%3D%2239%22%20transform%3D%22rotate%2831%2078%20112%29%22%2F%3E%0A%3Cellipse%20cx%3D%2299%22%20cy%3D%2281%22%20rx%3D%2215%22%20ry%3D%2236%22%20transform%3D%22rotate%28-31%2099%2081%29%22%2F%3E%0A%3Cellipse%20cx%3D%22127%22%20cy%3D%2255%22%20rx%3D%2214%22%20ry%3D%2234%22%20transform%3D%22rotate%2835%20127%2055%29%22%2F%3E%0A%3Cellipse%20cx%3D%22105%22%20cy%3D%22142%22%20rx%3D%2215%22%20ry%3D%2236%22%20transform%3D%22rotate%28-42%20105%20142%29%22%2F%3E%0A%3Cellipse%20cx%3D%22137%22%20cy%3D%22111%22%20rx%3D%2214%22%20ry%3D%2234%22%20transform%3D%22rotate%2837%20137%20111%29%22%2F%3E%0A%3Cellipse%20cx%3D%22166%22%20cy%3D%2281%22%20rx%3D%2213%22%20ry%3D%2231%22%20transform%3D%22rotate%28-34%20166%2081%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20fill%3D%22%23B8E68A%22%20opacity%3D%22.25%22%3E%0A%3Cellipse%20cx%3D%2229%22%20cy%3D%22166%22%20rx%3D%2213%22%20ry%3D%2230%22%20transform%3D%22rotate%28-45%2029%20166%29%22%2F%3E%0A%3Cellipse%20cx%3D%22151%22%20cy%3D%2237%22%20rx%3D%2212%22%20ry%3D%2228%22%20transform%3D%22rotate%2842%20151%2037%29%22%2F%3E%0A%3C%2Fg%3E%3C%2Fsvg%3E") left center / 180px 100% no-repeat,
            url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20270%20190%22%3E%0A%3Cg%20fill%3D%22none%22%20stroke%3D%22%23E58AA1%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20opacity%3D%22.24%22%3E%0A%3Cpath%20d%3D%22M244%20184C229%20130%20198%2082%20150%2028%22%2F%3E%3Cpath%20d%3D%22M214%20180C191%20130%20160%2092%20116%2060%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20fill%3D%22%23F1A4B7%22%20opacity%3D%22.22%22%3E%0A%3Cellipse%20cx%3D%22221%22%20cy%3D%22145%22%20rx%3D%2217%22%20ry%3D%2242%22%20transform%3D%22rotate%2838%20221%20145%29%22%2F%3E%0A%3Cellipse%20cx%3D%22195%22%20cy%3D%22114%22%20rx%3D%2216%22%20ry%3D%2238%22%20transform%3D%22rotate%28-32%20195%20114%29%22%2F%3E%0A%3Cellipse%20cx%3D%22174%22%20cy%3D%2284%22%20rx%3D%2215%22%20ry%3D%2235%22%20transform%3D%22rotate%2831%20174%2084%29%22%2F%3E%0A%3Cellipse%20cx%3D%22147%22%20cy%3D%2257%22%20rx%3D%2214%22%20ry%3D%2233%22%20transform%3D%22rotate%28-36%20147%2057%29%22%2F%3E%0A%3Cellipse%20cx%3D%22167%22%20cy%3D%22143%22%20rx%3D%2215%22%20ry%3D%2235%22%20transform%3D%22rotate%2843%20167%20143%29%22%2F%3E%0A%3Cellipse%20cx%3D%22137%22%20cy%3D%22113%22%20rx%3D%2214%22%20ry%3D%2233%22%20transform%3D%22rotate%28-38%20137%20113%29%22%2F%3E%0A%3Cellipse%20cx%3D%22108%22%20cy%3D%2284%22%20rx%3D%2213%22%20ry%3D%2230%22%20transform%3D%22rotate%2835%20108%2084%29%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20fill%3D%22%23F7C5D1%22%20opacity%3D%22.26%22%3E%0A%3Cellipse%20cx%3D%22246%22%20cy%3D%22168%22%20rx%3D%2213%22%20ry%3D%2229%22%20transform%3D%22rotate%2846%20246%20168%29%22%2F%3E%0A%3Cellipse%20cx%3D%22124%22%20cy%3D%2239%22%20rx%3D%2212%22%20ry%3D%2227%22%20transform%3D%22rotate%28-41%20124%2039%29%22%2F%3E%0A%3C%2Fg%3E%3C%2Fsvg%3E") right center / 185px 100% no-repeat,
            radial-gradient(circle at 12% 12%, rgba(145, 218, 94, .22), transparent 38%),
            radial-gradient(circle at 90% 12%, rgba(247, 201, 72, .16), transparent 36%),
            linear-gradient(112deg, #EDF9DF 0%, #FCFDFB 50%, #FDEAF0 100%) !important;
    }
}


/* v0.1.10 — botanical profile-header composition refinement.
 * Replaces the earlier abstract foliage header with the approved leafy banner:
 * foliage moves away from the avatar and frames the middle / right portions,
 * a soft white spotlight sits behind the profile identity, and the trust card
 * remains readable over the new parrot-green → white → blush atmosphere. */
.stanloop-loop-hero {
    background:
        radial-gradient(circle at 41% 42%, rgba(255, 255, 255, .96) 0 12%, rgba(255, 255, 255, .84) 19%, rgba(255, 255, 255, .48) 31%, rgba(255, 255, 255, 0) 52%),
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .08)),
        url("../images/loop-profile-header-botanical-v0110.png") center center / cover no-repeat !important;
    border-color: rgba(72, 149, 82, .15) !important;
    box-shadow: 0 22px 48px rgba(31, 43, 68, .085), 0 12px 28px rgba(200, 78, 67, .055) !important;
}

.stanloop-loop-hero::before {
    width: 188px;
    height: 188px;
    right: -38px;
    top: -48px;
    border-color: rgba(247, 201, 72, .13) !important;
}

.stanloop-loop-hero::after {
    left: 42%;
    bottom: 21px;
    width: 250px;
    border-bottom-color: rgba(72, 149, 82, .14) !important;
}

.stanloop-loop-hero__content {
    text-shadow: 0 1px 0 rgba(255, 255, 255, .20);
}

.stanloop-loop-trust-card {
    background: rgba(255, 255, 255, .95) !important;
    border-color: rgba(72, 149, 82, .12) !important;
    box-shadow: 0 16px 36px rgba(31, 43, 68, .08) !important;
}

@media (max-width: 1024px) {
    .stanloop-loop-hero {
        background:
            radial-gradient(circle at 48% 34%, rgba(255, 255, 255, .95) 0 13%, rgba(255, 255, 255, .78) 22%, rgba(255, 255, 255, .38) 34%, rgba(255, 255, 255, 0) 56%),
            linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .06)),
            url("../images/loop-profile-header-botanical-v0110.png") 52% center / cover no-repeat !important;
    }
}

@media (max-width: 760px) {
    .stanloop-loop-hero {
        background:
            radial-gradient(circle at 50% 24%, rgba(255, 255, 255, .95) 0 16%, rgba(255, 255, 255, .76) 26%, rgba(255, 255, 255, .26) 40%, rgba(255, 255, 255, 0) 60%),
            linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .06)),
            url("../images/loop-profile-header-botanical-v0110.png") 58% center / cover no-repeat !important;
    }
}


/* v1.0.94 — unified Covozi brand logo + approved palette */
.stanloop-loop-site-logo,
.stanloop-path-workspace-header__logo,
.stanloop-broadcast-workspace-header__logo,
.stanloop-wwm-workspace-header__logo { gap: 10px !important; }
.stanloop-loop-site-logo::before,
.stanloop-path-workspace-header__logo::before,
.stanloop-broadcast-workspace-header__logo::before,
.stanloop-wwm-workspace-header__logo::before { content: none !important; display: none !important; }
.stanloop-loop-site-logo .covozi-brand-logo__img,
.stanloop-path-workspace-header__logo .covozi-brand-logo__img,
.stanloop-broadcast-workspace-header__logo .covozi-brand-logo__img,
.stanloop-wwm-workspace-header__logo .covozi-brand-logo__img { height: 36px; width: auto; display:block; }
.stanloop-loop-site-header__inner,
.stanloop-loop-site-footer__inner,
.stanloop-loop-shell,
.stanloop-public-main { background-color: transparent; }


/* v1.0.96 — creator/public loop header logo placement repair */
.stanloop-loop-site-logo,
.stanloop-path-workspace-header__logo,
.stanloop-broadcast-workspace-header__logo,
.stanloop-wwm-workspace-header__logo { align-items: center !important; gap: 8px !important; }
.stanloop-loop-site-logo .covozi-brand-logo__img,
.stanloop-path-workspace-header__logo .covozi-brand-logo__img,
.stanloop-broadcast-workspace-header__logo .covozi-brand-logo__img,
.stanloop-wwm-workspace-header__logo .covozi-brand-logo__img { height: 32px !important; width:auto !important; }
