@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --paper: #f5f2eb;
    --ink: #171312;
    --muted: #5d554f;
    --line: rgba(23, 19, 18, 0.1);
    --gold: #d8a545;
    --coral: #ea7f63;
    --shadow: 0 24px 70px rgba(28, 21, 18, 0.12);
    --shadow-soft: 0 16px 36px rgba(28, 21, 18, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(216, 165, 69, 0.18), transparent 28%),
        radial-gradient(circle at 8% 12%, rgba(159, 198, 178, 0.18), transparent 24%),
        linear-gradient(180deg, #f8f4ed 0%, var(--paper) 42%, #f3ede4 100%);
    font-family: "Manrope", sans-serif;
}

body.auth-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

.home-shell {
    width: min(1260px, calc(100vw - 48px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 24px 0 48px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    flex: 0 0 clamp(180px, 24vw, 340px);
    width: clamp(180px, 24vw, 340px);
    min-height: 96px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand__logo {
    position: absolute;
    left: 0;
    top: 50%;
    height: var(--site-brand-logo-height, 84px);
    max-width: none;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(23, 19, 18, 0.08));
    transform: translate(var(--site-brand-logo-offset-x, 0px), calc(-50% + var(--site-brand-logo-offset-y, 0px)));
}

.site-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.site-actions.site-actions--authenticated {
    display: grid;
    justify-items: end;
    gap: 10px;
}

.site-actions__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.header-identity {
    display: grid;
    justify-items: end;
    gap: 3px;
    max-width: min(42vw, 360px);
}

.header-identity__label {
    color: rgba(93, 85, 79, 0.84);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.header-identity__value {
    display: block;
    max-width: 100%;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    text-align: right;
    text-wrap: pretty;
}

.header-identity__char {
    position: relative;
    display: inline-block;
}

.header-identity__char--dot::after,
.header-identity__char--ring::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: var(--header-identity-accent, #8acdd3);
    pointer-events: none;
}

.header-identity__char--dot::after {
    top: 0.22em;
    left: 50%;
    width: 0.4em;
    height: 0.4em;
    transform: translate(-50%, -82%);
    box-shadow: 0 0 0 0.1em rgba(255, 252, 247, 0.96);
}

.header-identity__char--ring::after {
    top: 54%;
    left: 50%;
    width: 0.36em;
    height: 0.36em;
    transform: translate(-50%, -50%);
    opacity: 0.98;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:disabled {
    cursor: wait;
    opacity: 0.75;
}

.button--primary {
    color: #fff7ef;
    background: linear-gradient(135deg, var(--ink), #3b2a25);
    box-shadow: 0 14px 28px rgba(23, 19, 18, 0.18);
}

.button--primary:hover {
    box-shadow: 0 18px 32px rgba(23, 19, 18, 0.22);
}

.button--secondary,
.button--ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 56px;
    padding: 48px 0 32px;
}

.eyebrow {
    margin: 0 0 16px;
    color: #9c5a2a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.stage-card h2,
.auth-modal__dialog h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero h1 {
    font-size: clamp(52px, 5.8vw, 78px);
    line-height: 0.94;
    max-width: 11ch;
}

.hero__lede {
    max-width: 630px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.hero__lede--secondary {
    max-width: 600px;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero__note {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.hero__stage {
    position: relative;
    min-height: 660px;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(0.2px);
}

.orb--gold {
    width: 130px;
    height: 130px;
    top: 24px;
    right: 20px;
    background: radial-gradient(circle at 30% 30%, #f6d777, var(--gold));
}

.orb--coral {
    width: 78px;
    height: 78px;
    top: 200px;
    left: 16px;
    background: radial-gradient(circle at 35% 35%, #f1ab94, var(--coral));
}

.orb--ink {
    width: 44px;
    height: 44px;
    bottom: 60px;
    right: 66px;
    background: radial-gradient(circle at 35% 35%, #5a4a45, var(--ink));
}

.stage-card {
    position: absolute;
    inset: 60px 0 0 28px;
    overflow: hidden;
    border: 1px solid rgba(23, 19, 18, 0.08);
    border-radius: 28px;
    background: rgba(255, 252, 247, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.stage-card__chrome {
    display: flex;
    gap: 8px;
    padding: 16px 18px 0;
}

.stage-card__chrome span {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(23, 19, 18, 0.16);
}

.stage-card__body {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1fr);
    gap: 24px;
    align-items: start;
    padding: 20px 22px 24px;
}

.stage-card__intro {
    padding-top: 6px;
}

.stage-card__kicker {
    margin: 0 0 12px;
    color: #9c5a2a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.stage-card h2 {
    font-size: 36px;
    line-height: 0.98;
}

.stage-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.stage-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.story-preview-card {
    padding: 12px;
    border: 1px solid rgba(23, 19, 18, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 30px rgba(23, 19, 18, 0.08);
}

.story-preview-card__frame {
    position: relative;
    height: 158px;
    border-radius: 16px;
    border: 1px solid rgba(23, 19, 18, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.92));
    overflow: hidden;
}

.story-preview-card__frame::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    height: 14px;
    border-radius: 999px;
    background: rgba(23, 19, 18, 0.05);
}

.story-preview-card__frame::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(23, 19, 18, 0.02), rgba(23, 19, 18, 0.06));
}

.story-preview-card__ghost {
    position: absolute;
    border-radius: 12px;
}

.story-preview-card__ghost--hero {
    left: 16px;
    top: 36px;
    width: 52%;
    height: 44px;
    background: linear-gradient(135deg, rgba(23, 19, 18, 0.12), rgba(23, 19, 18, 0.03));
}

.story-preview-card__ghost--line {
    left: 16px;
    bottom: 28px;
    width: 44%;
    height: 10px;
    background: rgba(23, 19, 18, 0.12);
}

.story-preview-card__ghost--chart {
    right: 16px;
    top: 42px;
    width: 34%;
    height: 72px;
    background:
        linear-gradient(180deg, rgba(216, 165, 69, 0.28), rgba(216, 165, 69, 0.08));
}

.story-preview-card__ghost--bar {
    right: 16px;
    bottom: 28px;
    width: 34%;
    height: 54px;
    background:
        linear-gradient(180deg, rgba(93, 85, 79, 0.26), rgba(93, 85, 79, 0.08));
}

.story-preview-card__ghost--bubble {
    right: 18px;
    top: 50px;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(234, 127, 99, 0.65), rgba(234, 127, 99, 0.25));
}

.story-preview-card__meta {
    display: grid;
    gap: 4px;
    padding: 12px 4px 2px;
}

.story-preview-card__meta h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.story-preview-card__meta p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--muted);
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.auth-modal[hidden] {
    display: none;
}

.auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 19, 18, 0.28);
    backdrop-filter: blur(6px);
}

.auth-modal__dialog {
    position: relative;
    width: min(520px, calc(100vw - 32px));
    padding: 28px;
    border: 1px solid rgba(23, 19, 18, 0.08);
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.96);
    box-shadow: 0 24px 90px rgba(23, 19, 18, 0.2);
}

.auth-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: rgba(23, 19, 18, 0.06);
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.auth-modal__dialog h2 {
    font-size: 40px;
    line-height: 0.95;
}

.auth-modal__lede {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.auth-switcher {
    display: inline-flex;
    gap: 8px;
    margin-top: 24px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(23, 19, 18, 0.05);
}

.auth-switcher__button {
    min-height: 40px;
    padding: 0 16px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.auth-switcher__button.is-active {
    background: #fffaf4;
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

.auth-form {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.auth-form__field {
    display: grid;
    gap: 8px;
}

.auth-form__field span {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.auth-form__field input {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid rgba(23, 19, 18, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    outline: none;
}

.auth-form__field input:focus {
    border-color: rgba(23, 19, 18, 0.28);
    box-shadow: 0 0 0 4px rgba(23, 19, 18, 0.06);
}

.auth-form__submit {
    width: 100%;
    margin-top: 4px;
}

.auth-form__hint,
.auth-form__status {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.auth-form__hint {
    color: var(--muted);
}

.auth-form__status {
    color: #8a3f1f;
    min-height: 1.6em;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .hero,
    .stage-card__body {
        grid-template-columns: 1fr;
    }

    .hero__stage {
        min-height: 560px;
    }

    .stage-card {
        position: relative;
        inset: 0;
    }

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

@media (max-width: 760px) {
    .home-shell {
        width: min(100vw - 28px, 1220px);
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .site-actions.site-actions--authenticated {
        justify-items: start;
    }

    .site-actions__buttons {
        justify-content: flex-start;
    }

    .header-identity {
        justify-items: start;
        max-width: 100%;
    }

    .header-identity__value {
        text-align: left;
    }

    .hero {
        gap: 32px;
        padding-top: 28px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero__lede {
        font-size: 16px;
    }

    .hero__stage {
        min-height: 520px;
    }

    .stage-card__body {
        padding: 16px 16px 20px;
    }

    .stage-gallery {
        grid-template-columns: 1fr;
    }

    .auth-modal {
        padding: 12px;
    }

    .auth-modal__dialog {
        padding: 24px 18px 20px;
        border-radius: 22px;
    }

    .auth-modal__dialog h2 {
        font-size: 34px;
    }
}

:root[data-site-theme="logo"] {
    --paper: #f7f7f2;
    --ink: #0f1110;
    --muted: #5f6462;
    --line: rgba(15, 17, 16, 0.1);
    --gold: #efd45d;
    --coral: #f57948;
    --shadow: 0 28px 68px rgba(15, 17, 16, 0.09);
    --shadow-soft: 0 16px 36px rgba(15, 17, 16, 0.06);
}

:root[data-site-theme="logo"] body.home-page {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(239, 212, 93, 0.14), transparent 24%),
        radial-gradient(circle at 10% 12%, rgba(138, 205, 211, 0.14), transparent 20%),
        linear-gradient(180deg, #fbfbf8 0%, var(--paper) 52%, #f4f4ee 100%);
}

:root[data-site-theme="logo"] body.home-page::before,
:root[data-site-theme="logo"] body.home-page::after {
    content: "";
    position: fixed;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

:root[data-site-theme="logo"] body.home-page::before {
    top: 74px;
    left: 6.5vw;
    width: 78px;
    height: 78px;
    background: rgba(138, 205, 211, 0.86);
}

:root[data-site-theme="logo"] body.home-page::after {
    top: 168px;
    right: 8vw;
    width: 128px;
    height: 128px;
    background: rgba(239, 212, 93, 0.62);
}

:root[data-site-theme="logo"] .home-shell {
    position: relative;
    width: min(1240px, calc(100vw - 56px));
    padding: 30px 0 68px;
}

:root[data-site-theme="logo"] .home-shell::after {
    content: "";
    position: absolute;
    right: 38px;
    top: 390px;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: rgba(245, 121, 72, 0.74);
    pointer-events: none;
}

:root[data-site-theme="logo"] .site-header {
    position: relative;
    padding: 14px 0 28px;
    border-bottom: 1px solid rgba(15, 17, 16, 0.08);
}

:root[data-site-theme="logo"] .brand {
    flex: 0 0 clamp(220px, 28vw, 370px);
    width: clamp(220px, 28vw, 370px);
    min-height: 98px;
}

:root[data-site-theme="logo"] .brand__logo {
    filter: none;
}

:root[data-site-theme="logo"] .site-actions.site-actions--authenticated {
    gap: 10px;
}

:root[data-site-theme="logo"] .site-actions__buttons {
    gap: 10px;
}

:root[data-site-theme="logo"] .header-identity__label {
    color: rgba(15, 17, 16, 0.48);
}

:root[data-site-theme="logo"] .header-identity__value {
    color: #111211;
}

:root[data-site-theme="logo"] .button {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(15, 17, 16, 0.09);
    letter-spacing: -0.01em;
}

:root[data-site-theme="logo"] .button:hover {
    transform: translateY(-2px);
}

:root[data-site-theme="logo"] .button--primary {
    color: #ffffff;
    background: #111211;
    border-color: #111211;
    box-shadow: 0 16px 32px rgba(15, 17, 16, 0.14);
}

:root[data-site-theme="logo"] .button--primary:hover {
    box-shadow: 0 20px 40px rgba(15, 17, 16, 0.18);
}

:root[data-site-theme="logo"] .button--secondary,
:root[data-site-theme="logo"] .button--ghost {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: none;
}

:root[data-site-theme="logo"] .hero {
    align-items: start;
    gap: 68px;
    padding: 58px 0 20px;
}

:root[data-site-theme="logo"] .hero__copy {
    position: relative;
    z-index: 1;
    padding-top: 26px;
}

:root[data-site-theme="logo"] .eyebrow,
:root[data-site-theme="logo"] .stage-card__kicker {
    color: var(--coral);
}

:root[data-site-theme="logo"] .hero h1 {
    max-width: 10ch;
    font-size: clamp(52px, 5.5vw, 76px);
    font-weight: 700;
    line-height: 0.92;
}

:root[data-site-theme="logo"] .hero__lede {
    max-width: 560px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.72;
}

:root[data-site-theme="logo"] .hero__lede--secondary {
    max-width: 540px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.68;
}

:root[data-site-theme="logo"] .hero__actions {
    gap: 12px;
    margin-top: 30px;
}

:root[data-site-theme="logo"] .hero__note {
    max-width: 500px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.65;
}

:root[data-site-theme="logo"] .hero__stage {
    min-height: 620px;
}

:root[data-site-theme="logo"] .orb {
    filter: none;
}

:root[data-site-theme="logo"] .orb--gold {
    width: 164px;
    height: 164px;
    top: 22px;
    right: 34px;
    background: rgba(239, 212, 93, 0.92);
}

:root[data-site-theme="logo"] .orb--coral {
    width: 74px;
    height: 74px;
    top: 222px;
    left: auto;
    right: -8px;
    background: rgba(245, 121, 72, 0.8);
}

:root[data-site-theme="logo"] .orb--ink {
    width: 92px;
    height: 92px;
    right: auto;
    left: 18px;
    bottom: 26px;
    background: rgba(138, 205, 211, 0.88);
}

:root[data-site-theme="logo"] .stage-card {
    inset: 56px 0 0 18px;
    border-radius: 34px;
    border-color: rgba(15, 17, 16, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: none;
}

:root[data-site-theme="logo"] .stage-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(247, 247, 242, 0.86), rgba(255, 255, 255, 0.95));
    pointer-events: none;
}

:root[data-site-theme="logo"] .stage-card__chrome,
:root[data-site-theme="logo"] .stage-card__body {
    position: relative;
    z-index: 1;
}

:root[data-site-theme="logo"] .stage-card__chrome {
    gap: 7px;
    padding: 18px 22px 0;
}

:root[data-site-theme="logo"] .stage-card__chrome span:nth-child(1) {
    background: rgba(138, 205, 211, 0.95);
}

:root[data-site-theme="logo"] .stage-card__chrome span:nth-child(2) {
    background: rgba(245, 121, 72, 0.92);
}

:root[data-site-theme="logo"] .stage-card__chrome span:nth-child(3) {
    background: rgba(239, 212, 93, 0.98);
}

:root[data-site-theme="logo"] .stage-card__body {
    gap: 28px;
    padding: 24px 24px 26px;
}

:root[data-site-theme="logo"] .stage-card h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 0.94;
}

:root[data-site-theme="logo"] .stage-card p {
    color: var(--muted);
}

:root[data-site-theme="logo"] .stage-gallery {
    gap: 16px;
}

:root[data-site-theme="logo"] .story-preview-card {
    padding: 14px;
    border-radius: 22px;
    border-color: rgba(15, 17, 16, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 30px rgba(15, 17, 16, 0.06);
}

:root[data-site-theme="logo"] .story-preview-card__frame {
    border-radius: 18px;
    border-color: rgba(15, 17, 16, 0.06);
    background: linear-gradient(180deg, #fdfdfa, #f3f5f2);
}

:root[data-site-theme="logo"] .story-preview-card__frame::before {
    height: 12px;
    background: rgba(15, 17, 16, 0.06);
}

:root[data-site-theme="logo"] .story-preview-card__frame::after {
    background: linear-gradient(180deg, rgba(15, 17, 16, 0.02), rgba(15, 17, 16, 0.05));
}

:root[data-site-theme="logo"] .story-preview-card:nth-child(1) .story-preview-card__ghost--chart,
:root[data-site-theme="logo"] .story-preview-card:nth-child(4) .story-preview-card__ghost--chart {
    background: linear-gradient(180deg, rgba(239, 212, 93, 0.42), rgba(239, 212, 93, 0.12));
}

:root[data-site-theme="logo"] .story-preview-card:nth-child(2) .story-preview-card__ghost--bar {
    background: linear-gradient(180deg, rgba(138, 205, 211, 0.42), rgba(138, 205, 211, 0.12));
}

:root[data-site-theme="logo"] .story-preview-card:nth-child(3) .story-preview-card__ghost--bubble {
    background: radial-gradient(circle at 30% 30%, rgba(245, 121, 72, 0.68), rgba(245, 121, 72, 0.2));
}

:root[data-site-theme="logo"] .story-preview-card__meta {
    gap: 6px;
    padding-top: 14px;
}

:root[data-site-theme="logo"] .story-preview-card__meta h3 {
    font-size: 15px;
    font-weight: 700;
}

:root[data-site-theme="logo"] .auth-modal__backdrop {
    background: rgba(15, 17, 16, 0.18);
    backdrop-filter: blur(4px);
}

:root[data-site-theme="logo"] .auth-modal__dialog {
    border-color: rgba(15, 17, 16, 0.08);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
}

:root[data-site-theme="logo"] .auth-modal__close {
    border: 1px solid rgba(15, 17, 16, 0.08);
    border-radius: 14px;
    background: rgba(247, 247, 242, 0.98);
    color: var(--muted);
}

:root[data-site-theme="logo"] .auth-switcher {
    padding: 5px;
    border-radius: 18px;
    background: rgba(15, 17, 16, 0.05);
    border-color: rgba(15, 17, 16, 0.06);
}

:root[data-site-theme="logo"] .auth-switcher__button {
    border-radius: 14px;
}

:root[data-site-theme="logo"] .auth-switcher__button.is-active {
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 17, 16, 0.06);
}

:root[data-site-theme="logo"] .auth-form__field input {
    border-color: rgba(15, 17, 16, 0.1);
    background: #ffffff;
}

:root[data-site-theme="logo"] .auth-form__field input:focus {
    border-color: rgba(15, 17, 16, 0.2);
    box-shadow: 0 0 0 4px rgba(138, 205, 211, 0.16);
}

:root[data-site-theme="logo"] .auth-form__status {
    color: #d06136;
}

@media (max-width: 1100px) {
    :root[data-site-theme="logo"] .hero__copy {
        padding-top: 0;
    }

    :root[data-site-theme="logo"] .hero__stage {
        min-height: 560px;
    }

    :root[data-site-theme="logo"] .stage-card {
        inset: 0;
    }
}

@media (max-width: 760px) {
    :root[data-site-theme="logo"] .home-shell {
        width: min(100vw - 28px, 1240px);
        padding-top: 20px;
    }

    :root[data-site-theme="logo"] .home-shell::after,
    :root[data-site-theme="logo"] body.home-page::before,
    :root[data-site-theme="logo"] body.home-page::after {
        display: none;
    }

    :root[data-site-theme="logo"] .site-header {
        gap: 18px;
        padding-bottom: 20px;
    }

    :root[data-site-theme="logo"] .hero {
        gap: 30px;
        padding-top: 30px;
    }

    :root[data-site-theme="logo"] .hero h1 {
        font-size: clamp(44px, 13vw, 58px);
    }

    :root[data-site-theme="logo"] .hero__lede {
        font-size: 16px;
    }

    :root[data-site-theme="logo"] .hero__actions {
        width: 100%;
    }

    :root[data-site-theme="logo"] .hero__actions .button {
        flex: 1 1 220px;
    }

    :root[data-site-theme="logo"] .stage-card__body {
        padding: 18px 18px 22px;
    }
}
