.sps-founder-message {
    --sfm-red: #d71920;
    --sfm-red-dark: #ad1018;
    --sfm-ink: #0b1528;
    --sfm-text: #465267;
    --sfm-line: #e5e9ef;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(64px, 8vw, 118px) 24px;
    background: #f7f8fa;
}

.sps-founder-message__glow {
    position: absolute;
    z-index: -1;
    top: -220px;
    left: -170px;
    width: 520px;
    height: 520px;
    border: 72px solid rgba(215, 25, 32, .045);
    border-radius: 50%;
    pointer-events: none;
}

.sps-founder-message__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    align-items: center;
    gap: clamp(42px, 7vw, 96px);
    width: min(1180px, 100%);
    margin: 0 auto;
}

.sps-founder-message__letter {
    position: relative;
    padding: clamp(32px, 4vw, 60px);
    background: #fff;
    border: 1px solid var(--sfm-line);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .08);
}

.sps-founder-message__letter::before {
    content: "";
    position: absolute;
    top: 0;
    left: clamp(32px, 4vw, 60px);
    width: 88px;
    height: 4px;
    background: linear-gradient(90deg, var(--sfm-red), #ef4650);
    border-radius: 0 0 99px 99px;
}

.sps-founder-message__quote {
    position: absolute;
    top: 18px;
    right: 32px;
    color: rgba(215, 25, 32, .07);
    font-family: Georgia, serif;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.sps-founder-message__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    color: var(--sfm-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sps-founder-message__eyebrow span {
    width: 34px;
    height: 2px;
    background: currentColor;
}

.sps-founder-message__title {
    max-width: 680px;
    margin: 0 0 26px;
    color: var(--sfm-ink);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 750;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.sps-founder-message__content {
    color: var(--sfm-text);
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.78;
}

.sps-founder-message__content p { margin: 0 0 18px; }
.sps-founder-message__content p:last-child { margin-bottom: 0; }

.sps-founder-message__signature {
    display: grid;
    justify-items: start;
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid var(--sfm-line);
}

.sps-founder-message__closing {
    margin-bottom: 7px;
    color: var(--sfm-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
}

.sps-founder-message__signature-line {
    width: 74px;
    height: 2px;
    margin: 3px 0 11px;
    background: linear-gradient(90deg, var(--sfm-red), transparent);
}

.sps-founder-message__signature strong {
    color: var(--sfm-ink);
    font-size: 18px;
}

.sps-founder-message__signature span {
    margin-top: 3px;
    color: #7b8798;
    font-size: 13px;
}

.sps-founder-message__visual {
    position: relative;
    padding: 20px;
}

.sps-founder-message__frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #e9edf2;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(11, 21, 40, .2);
}

.sps-founder-message__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.sps-founder-message__frame:hover .sps-founder-message__image { transform: scale(1.025); }

.sps-founder-message__image-shade {
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(180deg, transparent, rgba(7, 14, 28, .88));
    pointer-events: none;
}

.sps-founder-message__caption {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    display: grid;
    color: #fff;
}

.sps-founder-message__caption strong { font-size: 19px; }
.sps-founder-message__caption span { margin-top: 4px; color: rgba(255,255,255,.76); font-size: 13px; }

.sps-founder-message__accent {
    position: absolute;
    z-index: -1;
    border-radius: 18px;
}

.sps-founder-message__accent--top {
    top: 0;
    right: 0;
    width: 42%;
    height: 42%;
    background: linear-gradient(135deg, var(--sfm-red), var(--sfm-red-dark));
}

.sps-founder-message__accent--bottom {
    bottom: 0;
    left: 0;
    width: 36%;
    height: 34%;
    background: repeating-linear-gradient(-45deg, #dfe4eb 0 2px, transparent 2px 9px);
}

.sps-founder-message__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    color: #7b8798;
    text-align: center;
}

.sps-founder-message:not(.is-visible) .sps-founder-message__letter,
.sps-founder-message:not(.is-visible) .sps-founder-message__visual {
    opacity: 0;
    transform: translateY(24px);
}

.sps-founder-message__letter,
.sps-founder-message__visual {
    transition: opacity .7s ease, transform .7s ease;
}

.sps-founder-message.is-visible .sps-founder-message__visual { transition-delay: .12s; }

@media (max-width: 900px) {
    .sps-founder-message__inner { grid-template-columns: 1fr; }
    .sps-founder-message__visual { width: min(520px, 100%); margin: 0 auto; }
}

@media (max-width: 600px) {
    .sps-founder-message { padding: 54px 16px; }
    .sps-founder-message__letter { padding: 32px 22px; border-radius: 18px; }
    .sps-founder-message__quote { top: 18px; right: 18px; font-size: 100px; }
    .sps-founder-message__title { font-size: 32px; }
    .sps-founder-message__content { font-size: 16px; line-height: 1.7; }
    .sps-founder-message__visual { padding: 12px; }
    .sps-founder-message__frame { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .sps-founder-message__letter,
    .sps-founder-message__visual,
    .sps-founder-message__image {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

