/* Shared public/marketing pages: about, watch footer, login learn-more link */

.sg-public-shell {
    max-width: 720px;
    margin: 0 auto;
}

.sg-public-brand {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: #111827;
    text-decoration: none;
    display: block;
}

.sg-public-brand .dot { color: #a07040; }

.sg-learn-more-wrap {
    margin: -10px 0 20px;
    text-align: center;
}

.sg-learn-more {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #9d174d;
    text-decoration: none;
}

.sg-learn-more:hover { text-decoration: underline; }

.sg-public-btn-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sg-public-btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid #ec4899;
    background: #fff;
    color: #9d174d;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
}

.sg-public-btn:hover { background: #fff7fb; }

.sg-public-btn--solid {
    border-color: #ec4899;
    background: #ec4899;
    color: #fff;
}

.sg-public-btn--solid:hover {
    background: #db2777;
    border-color: #db2777;
}

.sg-public-promo {
    margin-top: 18px;
    padding: 16px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #f1d4e1;
    text-align: center;
}

.sg-public-promo-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 8px;
    color: #111827;
}

.sg-public-promo-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #6b7280;
    margin-bottom: 12px;
}

.sg-public-status {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #166534;
    text-align: center;
    min-height: 1.2em;
}

.sg-public-status.is-error { color: #b91c1c; }

/* About page */
.sg-about-body {
    min-height: 100vh;
    background: #f7f7f8;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111827;
    padding: 24px 16px 48px;
}

.sg-about-hero {
    text-align: center;
    margin-bottom: 28px;
}

.sg-about-hero img {
    margin-bottom: 10px;
    border-radius: 12px;
}

.sg-about-hero h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 10px;
}

.sg-about-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    color: #374151;
    max-width: 42rem;
    margin: 0 auto 14px;
}

.sg-about-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: #9d174d;
}

.sg-about-card {
    background: #fff;
    border: 1.5px solid #f1d4e1;
    border-radius: 18px;
    padding: 22px 18px;
    margin-bottom: 16px;
    box-shadow: 0 6px 28px rgba(236, 72, 153, 0.08);
}

.sg-about-card h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111827;
}

.sg-about-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin: 14px 0 6px;
    color: #374151;
}

.sg-about-card p,
.sg-about-card li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.sg-about-card ul,
.sg-about-card ol {
    padding-left: 1.25rem;
    margin: 8px 0;
}

.sg-about-card li { margin-bottom: 6px; }

.sg-about-steps {
    list-style: none;
    padding-left: 0;
    counter-reset: sg-step;
}

.sg-about-steps li {
    counter-increment: sg-step;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 12px;
}

.sg-about-steps li::before {
    content: counter(sg-step);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #fce7f3;
    color: #9d174d;
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sg-about-cta {
    text-align: center;
    margin-top: 24px;
}

.sg-about-cta .sg-public-btn {
    max-width: 320px;
    margin: 0 auto;
}
