/* StanLoop public Loop page layout - v0.1.79 */
:root {
    --sl-loop-green: #5ea72f;
    --sl-loop-green-deep: #3f8f24;
    --sl-loop-green-soft: #eaf6dc;
    --sl-loop-orange: #ff7417;
    --sl-loop-orange-soft: #fff0df;
    --sl-loop-ink: #171b25;
    --sl-loop-muted: #626b7d;
    --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: linear-gradient(110deg, rgba(236, 248, 218, .88), rgba(255, 246, 235, .82) 45%, rgba(255, 255, 255, .96));
}


.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(94, 167, 47, .45);
    background: #fff;
}

.stanloop-loop-site-start {
    color: #fff;
    background: var(--sl-loop-orange);
    box-shadow: 0 12px 24px rgba(255, 116, 23, .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(94, 167, 47, .16), rgba(255, 116, 23, .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(94, 167, 47, .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(94, 167, 47, .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, #dff3c8 0%, #f5e5a7 50%, #ff8b2e 100%);
    color: #27441d;
    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(63, 143, 36, .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(39, 68, 29, .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: #2c601c;
}

.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: var(--sl-loop-orange);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(255, 116, 23, .24);
}

.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 34% 12%, rgba(255, 255, 255, .50), transparent 26%),
        linear-gradient(115deg, #81c94f 0%, #c8d965 45%, #ff8a23 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(63, 143, 36, .25);
}

.stanloop-loop-hero h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -.045em;
    text-shadow: 0 8px 24px rgba(31, 43, 68, .18);
}

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

.stanloop-loop-hero__content p {
    margin: 0 0 24px;
    max-width: 620px;
    color: rgba(255, 255, 255, .98);
    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: var(--sl-loop-orange);
    color: #fff;
    box-shadow: 0 14px 28px rgba(255, 116, 23, .34);
}

.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, #f9ce34, #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(234, 246, 220, .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(94, 167, 47, .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(234, 246, 220, .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(255, 116, 23, .12);
    color: var(--sl-loop-orange);
    font-weight: 900;
}

.stanloop-loop-resource-item > span:first-child {
    width: 38px;
    height: 38px;
    background: rgba(94, 167, 47, .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, #f0f9e7);
}

.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(94, 167, 47, .32);
    border-radius: 16px;
    color: var(--sl-loop-muted);
    background: rgba(234, 246, 220, .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, #79c944 0%, #b8d95a 38%, #f1c34d 62%, #ff7a17 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(63, 143, 36, .28), inset 0 0 0 2px rgba(255, 255, 255, .36);
    text-shadow: none;
}

.stanloop-loop-hero__content p {
    max-width: 610px;
    color: #223018 !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(63, 143, 36, .22);
}

.stanloop-loop-trust-row__mark--cross {
    color: #fff !important;
    background: #d4472f;
    box-shadow: 0 6px 14px rgba(212, 71, 47, .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(94, 167, 47, .12);
    border: 1px solid rgba(94, 167, 47, .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: #9a5800;
    background: rgba(255, 188, 66, .18);
    border-color: rgba(255, 188, 66, .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, #72bf3f 0%, #78c846 56%, #ff9a25 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(30, 57, 18, .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(31, 43, 24, .36) !important;
}

.stanloop-loop-verified-check {
    width: .78em !important;
    height: .78em !important;
    min-width: .78em !important;
    vertical-align: .10em !important;
    background: linear-gradient(135deg, #67bd36, #3f9826) !important;
    color: #ffffff !important;
    font-size: .42em !important;
    line-height: 1 !important;
    box-shadow: 0 8px 16px rgba(63, 143, 36, .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, #78c843 0%, #82cc47 44%, #f1c04d 74%, #ff9a28 100%) !important;
    box-shadow: 0 22px 54px rgba(83, 125, 31, .14), 0 18px 42px rgba(255, 116, 23, .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(56, 86, 28, .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(34, 75, 21, .30) !important;
}

.stanloop-loop-hero__content p {
    color: rgba(255, 255, 255, .96) !important;
    font-weight: 700 !important;
    text-shadow: 0 3px 14px rgba(33, 67, 19, .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, #69c33d 0%, #3f9426 100%) !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    box-shadow: 0 10px 18px rgba(54, 124, 30, .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, #64b934 0%, #438f25 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(49, 112, 27, .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, #ff9e3d 0%, #ff7a1b 74%, #ff8f2f 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, .46) !important;
    box-shadow: 0 14px 28px rgba(255, 119, 28, .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, #ffac55 0%, #ff8124 100%) !important;
    color: #ffffff !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, #eef9e7 0%, #ffffff 100%) !important;
    color: var(--sl-loop-green-deep) !important;
    border-color: rgba(94, 167, 47, .34) !important;
    box-shadow: 0 12px 24px rgba(63, 143, 36, .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, #f1ffe9 0%, #ffffff 100%) !important;
    color: var(--sl-loop-green-deep) !important;
    border: 1px solid rgba(84, 168, 44, .34) !important;
    box-shadow: 0 12px 24px rgba(63, 143, 36, .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(234, 246, 220, .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(94, 167, 47, .18), transparent 45%),
        linear-gradient(135deg, #ffffff 0%, #f3faec 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(238, 249, 222, .92), rgba(255, 247, 235, .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, #73c83f 0%, #7fcb45 48%, #f2bd4a 76%, #ff9325 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(63, 143, 36, .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(33, 67, 19, .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(94, 167, 47, .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(58, 154, 36, .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: #edf9df;
    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, #2f7d20);
    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(237, 249, 223, .92), rgba(255, 242, 224, .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: #f2f9ea;
    color: var(--sl-loop-green-deep, #2f7d20);
    text-decoration: none;
}

.stanloop-loop-account-menu__item.is-signout {
    color: #c2410c;
    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(58, 154, 36, .72);
}

/* v0.1.88.4 Fan profile layout */
.stanloop-fan-profile-page .stanloop-fan-hero {
    background: linear-gradient(135deg, #3bc45d 0%, #7fce3d 48%, #ff981f 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(237, 249, 223, .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, #2f7d20);
    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(237, 249, 223, .94), rgba(255, 242, 224, .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(58, 154, 36, .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, #2f7d20);
    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;
    }
}
