:root {
    --navy: #072047;
    --blue: #2275e8;
    --sky: #48c2ff;
    --pink: #f45b9a;
    --red: #e84343;
    --orange: #ff8a2a;
    --gold: #ffd16a;
    --green: #2fa866;
    --purple: #7362d8;
    --cream: #fff8ec;
    --ink: #192c48;
    --muted: #65738c;
    --line: rgba(7, 32, 71, .12);
    --shadow: 0 28px 72px rgba(7, 32, 71, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fffaf4;
    overflow-x: hidden;
}
a { text-decoration: none; }


.campaign-intro-modal .modal-dialog {
    max-width: min(1080px, calc(100vw - 28px));
}
.campaign-intro-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: clamp(26px, 4vw, 46px);
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 215, 230, .72), transparent 28%),
        radial-gradient(circle at 90% 0%, rgba(255, 209, 106, .48), transparent 25%),
        rgba(255, 255, 255, .94);
    box-shadow: 0 40px 120px rgba(7, 32, 71, .34);
}
.campaign-intro-modal .modal-content::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .44)),
        repeating-linear-gradient(115deg, transparent 0 54px, rgba(255,255,255,.34) 55px 58px);
    pointer-events: none;
}
.modal-close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background-color: rgba(255,255,255,.88);
    box-shadow: 0 12px 30px rgba(7, 32, 71, .12);
    opacity: 1;
}
.campaign-intro-modal .modal-body {
    position: relative;
    z-index: 2;
    padding: clamp(30px, 5vw, 64px);
    text-align: center;
}
.modal-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    color: #fff;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--red), #ff7373);
    box-shadow: 0 18px 36px rgba(232, 67, 67, .24);
    font-size: clamp(1rem, 2vw, 1.28rem);
    font-weight: 950;
    letter-spacing: .08em;
    transform: rotate(-2deg);
}
.modal-kicker {
    margin: 24px 0 8px;
    color: var(--red);
    font-size: clamp(.9rem, 1.4vw, 1.04rem);
    font-weight: 950;
    letter-spacing: .12em;
}
.modal-title-main {
    margin: 0;
    color: var(--navy);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -.04em;
    font-size: clamp(2.25rem, 6.5vw, 5.7rem);
    text-shadow: 0 3px 0 rgba(255,255,255,.92);
}
.modal-title-main span {
    display: block;
    margin-bottom: .06em;
    font-size: 1.14em;
    background: linear-gradient(90deg, #e95031 0%, #8ad93d 34%, #3ab4ff 64%, #f45b9a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(7,32,71,.18);
}
.modal-catch {
    margin: 20px auto 0;
    max-width: 820px;
    color: var(--navy);
    font-size: clamp(1.12rem, 2.3vw, 2rem);
    line-height: 1.5;
    font-weight: 950;
}
.modal-lead {
    margin: 16px auto 0;
    max-width: 880px;
    color: #354b63;
    font-size: clamp(.98rem, 1.25vw, 1.16rem);
    line-height: 1.9;
    font-weight: 720;
}
.modal-plan-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 26px auto 0;
    max-width: 880px;
}
.modal-plan-card {
    padding: 20px;
    border: 1px solid rgba(7,32,71,.11);
    border-radius: 24px;
    background: rgba(255,255,255,.78);
    text-align: left;
    box-shadow: 0 18px 42px rgba(7, 32, 71, .08);
}
.modal-plan-card b {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    font-size: .8rem;
    letter-spacing: .08em;
}
.modal-plan-card:nth-child(2) b {
    background: linear-gradient(135deg, var(--red), var(--orange));
}
.modal-plan-card strong {
    display: block;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 950;
}
.modal-plan-card span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 720;
}
.modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}
.modal-backdrop.show {
    opacity: .48;
}

.hero-poster {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #fffaf4, #fff2e5);
}

.hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg img {
    width: min(96vw, 1560px);
    height: auto;
    transform: translateY(-1vh) scale(1.03);
    filter: saturate(1.08) contrast(1.03);
    opacity: .96;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,.05), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,250,244,.22) 72%, rgba(255,250,244,.94) 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 22px;
    justify-items: center;
    text-align: center;
}
.campaign-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    color: #fff;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--red), #ff7373);
    box-shadow: 0 18px 36px rgba(232, 67, 67, .24);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 950;
    letter-spacing: .08em;
    transform: rotate(-2deg);
}
.hero-message {
    width: min(100%, 980px);
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: clamp(30px, 5vw, 54px);
    background: rgba(255,255,255,.66);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}
.hero-kicker {
    margin: 0 0 10px;
    color: var(--red);
    font-size: clamp(.9rem, 1.5vw, 1.04rem);
    font-weight: 950;
    letter-spacing: .12em;
}
.hero-message h1 {
    margin: 0;
    color: var(--navy);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -.04em;
    font-size: clamp(2.5rem, 7vw, 6.2rem);
    text-shadow: 0 3px 0 rgba(255,255,255,.85);
}
.hero-message h1 span {
    display: block;
    margin-bottom: .08em;
    font-size: 1.18em;
    background: linear-gradient(90deg, #e95031 0%, #8ad93d 34%, #3ab4ff 64%, #f45b9a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(7,32,71,.18);
}
.hero-catch {
    margin: 22px auto 0;
    max-width: 820px;
    color: var(--navy);
    font-size: clamp(1.3rem, 2.8vw, 2.4rem);
    line-height: 1.45;
    font-weight: 950;
}
.hero-lead {
    margin: 20px auto 0;
    max-width: 880px;
    color: #354b63;
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    line-height: 1.95;
    font-weight: 720;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}
.btn-main,
.btn-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 950;
    transition: all .25s ease;
}
.btn-main {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 18px 38px rgba(232, 67, 67, .25);
}
.btn-main:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(232, 67, 67, .34);
}
.btn-main.large {
    min-height: 68px;
    padding-inline: 38px;
    font-size: 1.1rem;
}
.btn-sub {
    color: var(--navy);
    border: 1px solid rgba(7, 32, 71, .14);
    background: rgba(255, 255, 255, .84);
}
.btn-sub:hover { color: var(--navy); transform: translateY(-3px); }

.market-section,
.value-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #fffaf4, #fff 52%, #fff8ec);
}
.plans-section {
    position: relative;
    padding: 105px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 215, 230, .45), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(255, 209, 106, .34), transparent 25%),
        #fff;
}
.section-heading {
    max-width: 940px;
    margin: 0 auto 42px;
    text-align: center;
}
.section-heading p {
    margin: 0 0 9px;
    color: var(--red);
    font-weight: 950;
    letter-spacing: .16em;
}
.section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 4.4vw, 4rem);
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -.04em;
}
.section-heading span {
    display: block;
    max-width: 780px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 720;
}

.market-card {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(7,32,71,.1);
    border-radius: 38px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow);
}
.market-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}
.market-title span,
.value-panel span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    color: #fff;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    font-weight: 950;
    box-shadow: 0 15px 30px rgba(34,117,232,.22);
}
.market-title strong {
    color: var(--navy);
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    font-weight: 950;
}
.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.market-item {
    padding: 26px 22px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, #fff, #fff8ef);
}
.market-item i {
    color: var(--blue);
    font-size: 2.2rem;
}
.market-item small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-weight: 900;
}
.market-item b {
    display: block;
    margin-top: 8px;
    color: var(--navy);
    font-size: clamp(2.1rem, 3.8vw, 3.8rem);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.05em;
}
.market-item b em {
    font-style: normal;
}
.market-item p {
    margin: 10px 0 0;
    color: var(--ink);
    font-weight: 850;
}
.source-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 650;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.plan-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 46px);
    border-radius: 38px;
    border: 1px solid rgba(7,32,71,.1);
    background: rgba(255,255,255,.94);
    box-shadow: 0 26px 64px rgba(7,32,71,.12);
}
.plan-card::after {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 200px;
    height: 200px;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,230,.66), transparent 70%);
}
.plan-card.primary::after {
    background: radial-gradient(circle, rgba(255,209,106,.72), transparent 70%);
}
.plan-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 8px 14px;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-weight: 950;
    letter-spacing: .08em;
}
.plan-badge.alt { background: linear-gradient(135deg, var(--blue), var(--sky)); }
.plan-card h3 {
    position: relative;
    z-index: 1;
    margin: 22px 0 12px;
    color: var(--navy);
    font-size: clamp(1.7rem, 3.2vw, 3rem);
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -.04em;
}
.plan-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 720;
}
.plan-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 1.2rem;
}
.plan-card li {
    color: var(--ink);
    font-weight: 820;
    line-height: 1.65;
}
.plan-footer {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    padding: 14px 18px;
    border-radius: 18px;
    color: var(--navy);
    background: #fff7e8;
    border: 1px solid rgba(255,138,42,.2);
}
.plan-card:not(.primary) .plan-footer {
    background: #eef7ff;
    border-color: rgba(34,117,232,.16);
}
.rights-note {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 26px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(7,32,71,.04);
    border: 1px solid rgba(7,32,71,.1);
}
.rights-note i {
    flex: 0 0 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green), #80d17d);
    font-size: 1.35rem;
}
.rights-note h4 {
    margin: 0 0 8px;
    color: var(--navy);
    font-weight: 950;
}
.rights-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 700;
}

.value-list {
    display: grid;
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
}
.value-panel {
    display: grid;
    grid-template-columns: 58px 76px 1fr;
    gap: 20px;
    align-items: start;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 34px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(7,32,71,.1);
    box-shadow: 0 22px 58px rgba(7,32,71,.08);
}
.value-panel i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    color: var(--red);
    border-radius: 26px;
    background: #fff1f3;
    font-size: 2.1rem;
}
.value-panel:nth-child(2) i { color: var(--green); background: #eef9f1; }
.value-panel:nth-child(3) i { color: var(--purple); background: #f1efff; }
.value-panel:nth-child(4) i { color: var(--orange); background: #fff3e5; }
.value-panel h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    line-height: 1.35;
    font-weight: 950;
}
.value-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 720;
}

.cta-section {
    padding: 96px 0 110px;
    background:
        radial-gradient(circle at 12% 24%, rgba(255, 215, 230, .22), transparent 28%),
        linear-gradient(135deg, #061b3d, #0a3375 58%, #174da8);
}
.cta-card {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(34px, 5vw, 64px);
    text-align: center;
    color: #fff;
    border-radius: 42px;
    background:
        radial-gradient(circle at 86% 12%, rgba(255,209,106,.36), transparent 28%),
        rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 34px 80px rgba(0,0,0,.24);
}
.cta-card p {
    margin: 0 0 10px;
    color: var(--gold);
    font-weight: 950;
    letter-spacing: .12em;
}
.cta-card h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -.05em;
}
.cta-card span {
    display: block;
    max-width: 760px;
    margin: 18px auto 28px;
    color: rgba(255,255,255,.78);
    line-height: 1.9;
    font-weight: 700;
}
.page-footer {
    padding: 24px 0;
    color: rgba(255,255,255,.72);
    background: #04152f;
    font-weight: 760;
}
.page-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .76s ease, transform .76s ease;
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }

@media (max-width: 991.98px) {
    .hero-bg img {
        width: 130vw;
        transform: translateY(-6vh) scale(1.08);
        opacity: .92;
    }
    .hero-message {
        margin-top: 10vh;
    }
    .market-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    .value-panel {
        grid-template-columns: 58px 1fr;
    }
    .value-panel i {
        grid-column: 1;
        width: 58px;
        height: 58px;
        border-radius: 20px;
        font-size: 1.55rem;
    }
    .value-panel div {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}
@media (max-width: 575.98px) {
    .campaign-ribbon { transform: rotate(0deg); }
    .hero-message { padding: 26px 18px; border-radius: 30px; }
    .hero-actions a { width: 100%; }
    .market-title,
    .rights-note {
        align-items: flex-start;
        flex-direction: column;
    }
    .value-panel {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .value-panel div,
    .value-panel i { grid-column: auto; grid-row: auto; }
    .page-footer .container {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 767.98px) {
    .campaign-intro-modal .modal-dialog {
        margin: 12px auto;
    }
    .campaign-intro-modal .modal-body {
        padding: 30px 18px 24px;
    }
    .modal-plan-row {
        grid-template-columns: 1fr;
    }
    .modal-close {
        top: 14px;
        right: 14px;
    }
}

/* =========================================================
   Partner plan selector
   - Interactive Plan A / Plan B selection UI
========================================================= */
.partner-selector {
    max-width: 1380px;
    margin: 0 auto;
}
.partner-step-card,
.partner-summary-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 32, 71, .09);
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 26px 70px rgba(7, 32, 71, .11);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.partner-step-card {
    padding: clamp(24px, 3vw, 36px);
}
.partner-summary-card {
    padding: clamp(24px, 3vw, 32px);
}
.partner-step-title {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}
.partner-step-title > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 58px;
    height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #4b4bf5);
    box-shadow: 0 14px 28px rgba(34, 117, 232, .22);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .04em;
}
.partner-step-title h3,
.partner-summary-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.55rem, 2.7vw, 2.05rem);
    font-weight: 950;
    letter-spacing: -.035em;
}
.partner-step-title p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 700;
}
.partner-plan-grid,
.partner-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}
.partner-plan-option,
.partner-feature-option {
    position: relative;
    min-height: 100%;
    border: 1px solid rgba(7, 32, 71, .13);
    border-radius: 24px;
    background: #fff;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.partner-plan-option {
    display: grid;
    grid-template-columns: 30px auto minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;
    min-height: 136px;
    padding: 22px;
}
.partner-feature-option {
    display: flex;
    gap: 14px;
    padding: 19px;
}
.partner-plan-option:hover,
.partner-feature-option:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 117, 232, .34);
    box-shadow: 0 24px 56px rgba(34, 117, 232, .13);
}
.partner-plan-option.is-active,
.partner-feature-option:has(input:checked) {
    border-color: rgba(34, 117, 232, .46);
    background:
        radial-gradient(circle at 92% 0%, rgba(255, 209, 106, .18), transparent 34%),
        linear-gradient(180deg, rgba(238, 247, 255, .95), rgba(255, 255, 255, .97));
    box-shadow: 0 24px 62px rgba(34, 117, 232, .15);
}
.partner-plan-option input,
.partner-feature-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.partner-radio,
.partner-feature-option::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(34, 117, 232, .28);
    background: #fff;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.partner-radio {
    grid-column: 1;
    border-radius: 999px;
}
.partner-feature-option::before {
    content: "";
    margin-top: 2px;
    border-radius: 9px;
}
.partner-plan-option.is-active .partner-radio {
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), #4b4bf5);
    box-shadow: inset 0 0 0 7px #fff, 0 0 0 5px rgba(34, 117, 232, .12);
}
.partner-feature-option:has(input:checked)::before {
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), #4b4bf5);
}
.partner-feature-option:has(input:checked)::after {
    content: "✓";
    position: absolute;
    left: 28px;
    top: 22px;
    color: #fff;
    font-size: .92rem;
    font-weight: 950;
}
.partner-plan-tag {
    grid-column: 2;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    color: #1d4ed8;
    background: rgba(34, 117, 232, .09);
    font-size: .74rem;
    font-weight: 950;
    white-space: nowrap;
    letter-spacing: .06em;
}
.partner-plan-tag.alt {
    color: #d64522;
    background: rgba(255, 138, 42, .12);
}
.partner-plan-text {
    grid-column: 3;
    display: block;
    min-width: 0;
}
.partner-plan-text strong,
.partner-feature-option strong {
    display: block;
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 950;
    line-height: 1.35;
}
.partner-plan-text small,
.partner-feature-option small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.72;
    font-weight: 700;
}
.partner-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .16em;
}
.partner-summary-box {
    display: grid;
    gap: 16px;
    margin: 18px 0;
}
.partner-summary-box > div {
    padding: 18px;
    border: 1px solid rgba(7, 32, 71, .1);
    border-radius: 22px;
    background: rgba(248, 250, 252, .92);
}
.partner-summary-box small {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-weight: 850;
}
.partner-summary-box strong {
    display: block;
    color: var(--blue);
    font-size: 1.08rem;
    font-weight: 950;
    line-height: 1.45;
}
.partner-summary-box ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 1.15rem;
    color: var(--ink);
    line-height: 1.65;
    font-weight: 750;
}
.partner-summary-note {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 700;
}
.partner-summary-button {
    min-height: 62px;
    padding-inline: 20px;
    text-align: center;
}
.partner-sticky-summary {
    position: sticky;
    top: 24px;
}

@media (max-width: 1199.98px) {
    .partner-sticky-summary { position: static; }
}
@media (max-width: 991.98px) {
    .partner-plan-grid,
    .partner-feature-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575.98px) {
    .partner-step-title {
        display: block;
    }
    .partner-step-title > span {
        margin-bottom: 12px;
    }
    .partner-step-card,
    .partner-summary-card {
        border-radius: 24px;
        padding: 22px;
    }
    .partner-plan-option {
        grid-template-columns: 30px minmax(0, 1fr);
        min-height: auto;
        row-gap: 8px;
    }
    .partner-plan-tag {
        grid-column: 2;
        grid-row: 1;
    }
    .partner-plan-text {
        grid-column: 1 / -1;
        grid-row: 2;
        padding-left: 44px;
    }
}
