body.beacon-public-landing-page {
    background: #f6f1e9;
    margin: 0;
}

.beacon-public-landing {
    --landing-text: #17231d;
    --landing-muted: #5f6c64;
    --landing-line: rgba(23, 35, 29, 0.14);
    --landing-surface: rgba(255, 253, 249, 0.86);
    --landing-green: #0f4d34;
    --landing-teal: #28766c;
    --landing-blue: #37658a;
    --landing-amber: #b97722;
    background: #f6f1e9;
    color: var(--landing-text);
    min-height: 100vh;
}

.beacon-public-landing *,
.beacon-public-landing *::before,
.beacon-public-landing *::after {
    box-sizing: border-box;
}

.beacon-landing-header {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    left: 0;
    padding: 22px clamp(20px, 5vw, 72px);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
}

.beacon-landing-brand {
    align-items: center;
    color: var(--landing-text);
    display: inline-flex;
    font-size: 20px;
    font-weight: 850;
    gap: 12px;
    line-height: 1;
    text-decoration: none;
}

.beacon-landing-brand img {
    display: block;
    height: 48px;
    width: auto;
}

.beacon-landing-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.beacon-landing-nav a,
.beacon-landing-button {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-height: 42px;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.beacon-landing-nav a {
    color: #203029;
    padding: 0 14px;
}

.beacon-landing-nav .beacon-landing-nav-cta,
.beacon-landing-button.is-primary {
    background: var(--landing-green);
    border: 1px solid var(--landing-green);
    box-shadow: 0 12px 28px rgba(15, 77, 52, 0.2);
    color: #fff;
}

.beacon-landing-nav .beacon-landing-nav-cta {
    padding: 0 18px;
}

.beacon-landing-button {
    padding: 0 22px;
}

.beacon-landing-button.is-secondary {
    background: var(--landing-surface);
    border: 1px solid var(--landing-line);
    color: #203029;
}

.beacon-landing-nav a:hover,
.beacon-landing-nav a:focus,
.beacon-landing-button:hover,
.beacon-landing-button:focus {
    transform: translateY(-1px);
}

.beacon-landing-nav .beacon-landing-nav-cta:hover,
.beacon-landing-nav .beacon-landing-nav-cta:focus,
.beacon-landing-button.is-primary:hover,
.beacon-landing-button.is-primary:focus {
    color: #fff;
}

.beacon-landing-hero {
    align-items: center;
    display: flex;
    isolation: isolate;
    min-height: clamp(560px, 74vh, 760px);
    overflow: hidden;
    padding: 112px clamp(20px, 5vw, 72px) 54px;
    position: relative;
}

.beacon-landing-hero::before {
    background: rgba(255, 252, 246, 0.5);
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}

.beacon-landing-hero-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center right;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.beacon-landing-hero-inner {
    max-width: 650px;
    position: relative;
    width: min(100%, 650px);
}

.beacon-landing-kicker {
    color: var(--landing-blue);
    display: inline-block;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.beacon-landing-hero h1 {
    color: var(--landing-text);
    font-size: clamp(58px, 9vw, 116px);
    letter-spacing: 0;
    line-height: 0.9;
    margin: 18px 0 22px;
}

.beacon-landing-hero p {
    color: #34453c;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.5;
    margin: 0;
    max-width: 580px;
}

.beacon-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.beacon-landing-proof {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 42px 0 0;
    max-width: 650px;
}

.beacon-landing-proof div {
    border-left: 3px solid var(--landing-line);
    min-width: 0;
    padding-left: 13px;
}

.beacon-landing-proof div:nth-child(1) {
    border-color: var(--landing-green);
}

.beacon-landing-proof div:nth-child(2) {
    border-color: var(--landing-teal);
}

.beacon-landing-proof div:nth-child(3) {
    border-color: var(--landing-amber);
}

.beacon-landing-proof dt,
.beacon-landing-proof dd {
    margin: 0;
}

.beacon-landing-proof dt {
    color: var(--landing-text);
    font-size: 15px;
    font-weight: 850;
}

.beacon-landing-proof dd {
    color: var(--landing-muted);
    font-size: 13px;
    line-height: 1.35;
    margin-top: 5px;
}

.beacon-landing-section {
    padding: 58px clamp(20px, 5vw, 72px);
}

.beacon-landing-section-heading {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin: 0 auto 24px;
    max-width: 1180px;
}

.beacon-landing-section-heading h2,
.beacon-landing-auth-band h2 {
    color: var(--landing-text);
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: 0;
    line-height: 1.04;
    margin: 8px 0 0;
    max-width: 720px;
}

.beacon-landing-feature-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1180px;
}

.beacon-landing-feature-grid article {
    background: rgba(255, 253, 249, 0.78);
    border: 1px solid var(--landing-line);
    border-radius: 8px;
    min-width: 0;
    padding: 22px;
}

.beacon-landing-feature-grid .dashicons {
    align-items: center;
    background: #e8f3ef;
    border-radius: 8px;
    color: var(--landing-green);
    display: inline-flex;
    font-size: 20px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    width: 38px;
}

.beacon-landing-feature-grid h3 {
    color: var(--landing-text);
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 18px 0 9px;
}

.beacon-landing-feature-grid p {
    color: var(--landing-muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.beacon-landing-auth-band {
    align-items: center;
    background: #123d32;
    color: #eef8f3;
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin-top: 24px;
    padding: 46px clamp(20px, 5vw, 72px);
}

.beacon-landing-auth-band .beacon-landing-kicker,
.beacon-landing-auth-band h2 {
    color: #eef8f3;
}

.beacon-landing-auth-band p {
    color: rgba(238, 248, 243, 0.78);
    font-size: 16px;
    line-height: 1.6;
    margin: 14px 0 0;
    max-width: 640px;
}

.beacon-landing-auth-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.beacon-landing-auth-band .beacon-landing-button.is-primary {
    background: #eef8f3;
    border-color: #eef8f3;
    box-shadow: none;
    color: #123d32;
}

.beacon-landing-auth-band .beacon-landing-button.is-primary:hover,
.beacon-landing-auth-band .beacon-landing-button.is-primary:focus {
    color: #123d32;
}

.beacon-landing-auth-band .beacon-landing-button.is-secondary {
    background: transparent;
    border-color: rgba(238, 248, 243, 0.34);
    color: #eef8f3;
}

@media (max-width: 860px) {
    .beacon-landing-header {
        align-items: flex-start;
        gap: 14px;
        padding-top: 18px;
    }

    .beacon-landing-nav {
        max-width: 64%;
    }

    .beacon-landing-nav a[href="#workflow"] {
        display: none;
    }

    .beacon-landing-hero {
        min-height: 640px;
        padding-top: 126px;
    }

    .beacon-landing-hero::before {
        background: rgba(255, 252, 246, 0.7);
    }

    .beacon-landing-proof,
    .beacon-landing-feature-grid {
        grid-template-columns: 1fr;
    }

    .beacon-landing-section-heading,
    .beacon-landing-auth-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .beacon-landing-auth-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .beacon-landing-header {
        position: relative;
    }

    .beacon-landing-brand img {
        height: 42px;
    }

    .beacon-landing-nav {
        max-width: none;
    }

    .beacon-landing-nav a {
        min-height: 38px;
        padding: 0 10px;
    }

    .beacon-landing-nav .beacon-landing-nav-cta {
        padding: 0 13px;
    }

    .beacon-landing-hero {
        min-height: 0;
        padding-top: 44px;
    }

    .beacon-landing-hero-image {
        opacity: 0.35;
    }

    .beacon-landing-actions,
    .beacon-landing-auth-actions {
        width: 100%;
    }

    .beacon-landing-button {
        flex: 1 1 180px;
        min-width: 0;
    }
}
