/* SPC sales page — scoped under .spc-page to avoid global side-effects */

.spc-page {
    /* Brand greens */
    --spc-green-500: #2ad167;
    --spc-green-600: #20b557;
    --spc-green-400: #5ce08d;
    --spc-green-300: #88ecaa;
    --spc-green-50: #e9faef;

    /* Neutrals */
    --spc-ink: #0b1410;
    --spc-ink-2: #121d17;
    --spc-ink-3: #1a261f;
    --spc-ink-4: #243329;
    --spc-line: rgba(255, 255, 255, 0.08);
    --spc-line-2: rgba(255, 255, 255, 0.14);

    /* Paper (handwritten card) */
    --spc-paper-ink: #1a1410;

    /* Accents */
    --spc-warm: #f59e0c;

    /* Type */
    --spc-display: "Fraunces", "Times New Roman", serif;
    --spc-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --spc-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    --spc-hand: "Caveat", "Kalam", "Comic Sans MS", cursive;
    --spc-hand-2: "Kalam", "Caveat", cursive;

    --spc-r-sm: 8px;
    --spc-r-md: 14px;
    --spc-r-lg: 22px;
    --spc-r-xl: 32px;
    --spc-r-pill: 999px;

    /* Text colours on dark */
    --spc-t-1: rgba(255, 255, 255, 0.96);
    --spc-t-2: rgba(255, 255, 255, 0.78);
    --spc-t-3: rgba(255, 255, 255, 0.58);
    --spc-t-4: rgba(255, 255, 255, 0.40);

    background: var(--spc-ink);
    color: var(--spc-t-2);
    font-family: var(--spc-sans);
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.spc-page * {
    box-sizing: border-box;
}

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

.spc-page a {
    color: inherit;
}

.spc-page ::selection {
    background: var(--spc-green-500);
    color: var(--spc-ink);
}

/* Container */
.spc-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.spc-container.spc-narrow {
    max-width: 720px;
}

.spc-container.spc-read {
    max-width: 640px;
}

/* Eyebrow */
.spc-eyebrow {
    font-family: var(--spc-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--spc-green-400);
    margin: 0 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.spc-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--spc-green-400);
    opacity: 0.6;
    flex-shrink: 0;
}

.spc-eyebrow.spc-eyebrow-plain::before {
    display: none;
}

/* Headings */
.spc-page h1,
.spc-page h2,
.spc-page h3,
.spc-page h4 {
    font-family: var(--spc-display);
    color: var(--spc-t-1);
    font-weight: 400;
    letter-spacing: -0.022em;
    margin: 0;
}

.spc-page h1 em,
.spc-page h2 em,
.spc-page h3 em,
.spc-page h4 em {
    font-style: italic;
    color: var(--spc-green-400);
    font-weight: 400;
}

.spc-h2 {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.02;
    font-weight: 300;
    text-wrap: balance;
}

.spc-h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.spc-lede {
    font-size: 20px;
    line-height: 1.55;
    color: var(--spc-t-2);
    max-width: 68ch;
    text-wrap: pretty;
}

.spc-pull-quote {
    margin: 28px auto;
    max-width: 640px;
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.35;
    color: var(--spc-t-1);
    text-align: center;
    text-wrap: balance;
}

.spc-body p {
    margin: 0 0 1em;
}

.spc-body p:last-child {
    margin-bottom: 0;
}

/* Buttons */
.spc-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: var(--spc-r-pill);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    font-family: var(--spc-sans);
    border: 0;
    cursor: pointer;
    transition: transform .25s cubic-bezier(.2, .7, .3, 1), box-shadow .25s, background .25s;
    line-height: 1;
}

.spc-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.spc-btn-primary {
    background: var(--spc-green-500);
    color: var(--spc-ink);
    box-shadow: 0 8px 30px -10px rgba(42, 209, 103, 0.5);
}

.spc-btn-primary:hover {
    background: var(--spc-green-400);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(42, 209, 103, 0.55);
    color: var(--spc-ink);
}

.spc-btn-large {
    font-size: 18px;
    padding: 22px 36px;
}

.spc-btn-ghost {
    background: transparent;
    color: var(--spc-t-1);
    border: 1px solid var(--spc-line-2);
}

.spc-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--spc-t-1);
}

.spc-btn .spc-arr {
    transition: transform .25s;
}

.spc-btn:hover .spc-arr {
    transform: translateX(4px);
}

/* Section base */
.spc-section {
    padding: 110px 0;
    position: relative;
}

.spc-section.spc-section-tight {
    padding: 70px 0;
}

/* ============== Hero ============== */
.spc-hero {
    padding: 88px 0 120px;
    position: relative;
    overflow: hidden;
}

.spc-hero::before {
    content: "";
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 900px;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(42, 209, 103, 0.18), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}

.spc-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.spc-hero-pre {
    font-family: var(--spc-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--spc-green-400);
    margin: 0 0 28px;
}

.spc-hero h1 {
    font-size: clamp(40px, 6.5vw, 88px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--spc-t-1);
    margin: 0 0 28px;
    text-wrap: balance;
}

.spc-hero h1 .spc-accent {
    color: var(--spc-green-400);
    font-style: italic;
    font-weight: 400;
}

.spc-hero-sub {
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.35;
    color: var(--spc-t-2);
    max-width: 720px;
    margin: 0 auto 24px;
    text-wrap: balance;
}

.spc-hero-lede {
    font-size: 17px;
    color: var(--spc-t-3);
    max-width: 54ch;
    margin: 0 auto 40px;
    text-wrap: pretty;
}

.spc-scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--spc-t-2);
    text-decoration: none;
    font-family: var(--spc-display);
    font-style: italic;
    font-size: 19px;
    padding: 14px 26px;
    border-radius: var(--spc-r-pill);
    border: 1px solid var(--spc-line-2);
    background: transparent;
    cursor: pointer;
    transition: border-color .25s, transform .25s, color .25s;
}

.spc-scroll-cta:hover {
    border-color: var(--spc-green-400);
    color: var(--spc-t-1);
    transform: translateY(-2px);
}

.spc-scroll-cta .spc-arrow {
    display: inline-block;
    transition: transform .25s;
}

.spc-scroll-cta:hover .spc-arrow {
    transform: translateY(3px);
}

.spc-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.spc-scroll-cta-secondary {
    font-size: 17px;
    padding: 12px 22px;
}

.spc-hero-credibility {
    font-family: var(--spc-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--spc-t-4);
    margin: 36px auto 0;
    max-width: 760px;
    text-wrap: balance;
    line-height: 1.6;
}

/* ============== Pattern match ============== */
.spc-scene {
    max-width: 580px;
    margin: 0 auto;
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.45;
    color: var(--spc-t-1);
    text-align: left;
}

.spc-scene p {
    margin: 0 0 1.1em;
}

.spc-scene .spc-dialog {
    color: var(--spc-t-2);
}

.spc-bridge {
    margin: 60px auto 0;
    max-width: 640px;
    text-align: center;
    font-family: var(--spc-display);
    font-weight: 500;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.3;
    color: var(--spc-t-1);
    letter-spacing: -0.015em;
    text-wrap: balance;
}

.spc-bridge .spc-underline {
    background: linear-gradient(transparent 68%, rgba(42, 209, 103, 0.35) 68%);
    padding: 0 4px;
}

/* ============== Named enemies ============== */
.spc-enemies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1px;
    gap: 1px;
    background: var(--spc-line);
    border: 1px solid var(--spc-line);
    border-radius: var(--spc-r-lg);
    overflow: hidden;
    margin-top: 56px;
}

.spc-enemy {
    background: var(--spc-ink-2);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spc-enemy-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(42, 209, 103, 0.08);
    color: var(--spc-green-400);
    font-family: var(--spc-mono);
    font-size: 14px;
    margin-bottom: 6px;
}

.spc-enemy h4 {
    font-family: var(--spc-display);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    color: var(--spc-t-1);
    letter-spacing: -0.01em;
}

.spc-enemy p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--spc-t-2);
    margin: 0;
}

.spc-enemy p + p {
    margin-top: 6px;
}

.spc-enemy p.spc-dim {
    color: var(--spc-t-3);
}

/* ============== Stakes ============== */
.spc-stakes {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--spc-ink) 0%, var(--spc-ink-2) 50%, var(--spc-ink) 100%);
}

.spc-stakes-body {
    max-width: 580px;
    margin: 0 auto;
    font-size: 19px;
    color: var(--spc-t-2);
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    line-height: 1.55;
}

.spc-stakes-body p {
    margin: 0 0 1em;
}

.spc-stakes-body p.spc-last {
    font-style: normal;
    font-weight: 500;
    color: var(--spc-t-1);
    font-family: var(--spc-sans);
}

.spc-stakes-body .spc-green {
    color: var(--spc-green-400);
}

/* ============== What is SPC ============== */
.spc-what-is {
    padding-top: 60px;
    padding-bottom: 60px;
}

.spc-what-is .spc-eyebrow {
    margin-bottom: 18px;
    justify-content: center;
}

.spc-what-is-body {
    margin: 40px auto 0;
    max-width: 610px;
    font-size: 19px;
    line-height: 1.6;
    color: var(--spc-t-2);
    text-align: center;
}

.spc-what-is-body p {
    margin: 0 0 18px;
}

.spc-what-is-body p:last-child {
    margin-bottom: 0;
}

.spc-what-is-pointe {
    margin-top: 28px !important;
    color: var(--spc-t-1);
    font-family: var(--spc-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.45;
    text-wrap: balance;
}

.spc-what-is-pointe em {
    color: var(--spc-green-400);
    font-style: italic;
}

.spc-what-is-ked {
    margin: 44px auto 0;
    max-width: 620px;
    padding: 22px 28px;
    border: 1px solid var(--spc-line);
    border-left: 2px solid var(--spc-green-500);
    border-radius: var(--spc-r-md);
    background: rgba(255, 255, 255, 0.02);
    font-size: 15px;
    line-height: 1.6;
    color: var(--spc-t-3);
}

.spc-what-is-ked p {
    margin: 0;
}

.spc-what-is-ked strong {
    color: var(--spc-t-2);
}

.spc-what-is-sig {
    margin: 28px auto 0;
    text-align: center;
    font-family: var(--spc-hand);
    font-size: 30px;
    color: var(--spc-green-400);
    line-height: 1;
}

.spc-stakes-bridge {
    margin: 36px auto 0;
    max-width: 580px;
    padding: 22px 0 0;
    border-top: 1px solid var(--spc-line);
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.55;
    color: var(--spc-t-2);
    text-align: center;
    text-wrap: balance;
}

.spc-stakes-bridge p {
    margin: 0 0 12px;
}

.spc-stakes-bridge p:last-child {
    margin: 0;
}

.spc-parent-pullquote {
    margin: 56px auto 48px;
    max-width: 720px;
    padding: 32px 36px;
    border-radius: var(--spc-r-lg);
    background: linear-gradient(160deg, rgba(42, 209, 103, 0.08), var(--spc-ink-2));
    border: 1px solid rgba(42, 209, 103, 0.22);
    text-align: center;
}

.spc-parent-pullquote-text {
    margin: 0 0 14px;
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.45;
    color: var(--spc-t-1);
    text-wrap: balance;
}

.spc-parent-pullquote-attr {
    margin: 0;
    font-family: var(--spc-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--spc-green-400);
}

/* ============== Mechanism ============== */
.spc-permission {
    max-width: 480px;
    margin: 0 auto 48px;
    padding: 22px 28px;
    border-left: 2px solid var(--spc-green-500);
    font-family: var(--spc-display);
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: var(--spc-t-2);
}

.spc-permission p {
    margin: 0 0 6px;
}

.spc-permission p:last-child {
    margin: 0;
}

.spc-contrast {
    margin: 0 auto;
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.55;
    text-align: center;
    color: var(--spc-t-2);
    max-width: 550px;
}

.spc-contrast .spc-pointe {
    margin-top: 24px;
    color: var(--spc-t-1);
    font-style: normal;
    font-family: var(--spc-sans);
}

.spc-contrast .spc-green {
    color: var(--spc-green-400);
    font-weight: bold;
}

.spc-three-qs {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-gap: 56px;
    gap: 56px;
    align-items: center;
    margin: 70px 0 60px;
}

.spc-three-qs-explain h3 {
    margin-bottom: 16px;
}

.spc-three-qs-explain .spc-explain-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--spc-t-2);
    max-width: 42ch;
}

.spc-three-qs-explain .spc-explain-body p {
    margin: 0 0 1em;
}

.spc-three-qs-explain .spc-explain-body p.spc-dim {
    padding-top: 16px;
    border-top: 1px solid var(--spc-line);
    margin-top: 20px;
    font-size: 16px;
    color: var(--spc-t-3);
}

/* Handwritten card */
.spc-card-frame {
    position: relative;
    padding: 30px 10px;
}

.spc-card-frame .spc-doodle {
    position: absolute;
    font-family: var(--spc-hand);
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    line-height: 1.2;
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
}

.spc-card-frame .spc-doodle .spc-arrow {
    display: inline-block;
    margin-top: 4px;
    color: rgba(42, 209, 103, 0.6);
    font-size: 28px;
}

.spc-card-frame .spc-d1 {
    top: -10px;
    left: 0;
    transform: rotate(-8deg);
}

.spc-card-frame .spc-d2 {
    bottom: -52px;
    right: 0;
    transform: rotate(4deg);
    text-align: right;
}

.spc-card-paper {
    position: relative;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.04), transparent 60%),
    linear-gradient(180deg, #f6efd9 0%, #ede4c5 100%);
    color: var(--spc-paper-ink);
    padding: 48px 44px 56px;
    border-radius: 6px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 2px 0 rgba(0, 0, 0, 0.12) inset,
    0 -1px 0 rgba(255, 255, 255, 0.4) inset;
    transform: rotate(-1.2deg);
    max-width: 460px;
    margin: 0 auto;
}

.spc-card-paper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 38px,
            rgba(58, 90, 144, 0.22) 38px,
            rgba(58, 90, 144, 0.22) 39px
    );
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.6;
}

.spc-card-paper::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.18  0 0 0 0 0.13  0 0 0 .25 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
    mix-blend-mode: multiply;
    opacity: 0.4;
    pointer-events: none;
    border-radius: inherit;
}

.spc-card-paper > * {
    position: relative;
    z-index: 1;
}

.spc-card-paper .spc-tape {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 110px;
    height: 28px;
    background: rgba(255, 220, 130, 0.55);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-left: 1px dashed rgba(0, 0, 0, 0.06);
    border-right: 1px dashed rgba(0, 0, 0, 0.06);
}

.spc-card-paper .spc-pin {
    position: absolute;
    top: 8px;
    left: 16px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ff6464, #aa1f1f 65%, #6a0d0d);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.spc-card-paper .spc-date {
    position: absolute;
    top: 18px;
    right: 28px;
    font-family: var(--spc-hand);
    font-size: 18px;
    color: rgba(26, 20, 16, 0.5);
    transform: rotate(-2deg);
}

.spc-card-paper .spc-card-title {
    font-family: var(--spc-hand);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--spc-paper-ink);
    margin: 4px 0 26px;
    letter-spacing: 0.5px;
    transform: rotate(-0.5deg);
}

.spc-card-paper .spc-card-title em {
    font-style: normal;
    position: relative;
    display: inline-block;
    color: var(--spc-paper-ink);
}

.spc-card-paper .spc-card-title em::after {
    content: "";
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: -3px;
    height: 7px;
    background: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 200 8%27 preserveAspectRatio=%27none%27><path d=%27M2 5 Q 30 1, 60 4 T 120 5 T 198 4%27 fill=%27none%27 stroke=%27%23c33%27 stroke-width=%272.4%27 stroke-linecap=%27round%27/></svg>") no-repeat center / 100% 100%;
    opacity: 0.8;
}

.spc-card-paper ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: var(--spc-hand);
    font-size: 26px;
    line-height: 1.25;
    color: var(--spc-paper-ink);
}

.spc-card-paper ol li {
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-gap: 8px;
    gap: 8px;
    align-items: start;
}

.spc-card-paper ol li .spc-num {
    font-family: var(--spc-hand);
    font-weight: 700;
    font-size: 28px;
    color: #c43;
    transform: rotate(-3deg);
    line-height: 1;
    padding-top: 3px;
}

.spc-card-paper ol li .spc-q strong {
    font-weight: 700;
}

.spc-card-paper ol li .spc-q .spc-hint {
    display: block;
    font-family: var(--spc-hand-2);
    font-size: 17px;
    color: rgba(26, 20, 16, 0.55);
    margin-top: 2px;
    font-weight: 400;
}

.spc-card-paper .spc-li-1 {
    transform: rotate(-0.6deg) translateX(2px);
}

.spc-card-paper .spc-li-2 {
    transform: rotate(0.4deg) translateX(-3px);
}

.spc-card-paper .spc-li-3 {
    transform: rotate(-0.2deg) translateX(1px);
}

.spc-card-paper .spc-sig {
    position: absolute;
    bottom: 14px;
    right: 32px;
    font-family: var(--spc-hand);
    font-size: 22px;
    color: rgba(26, 20, 16, 0.45);
    transform: rotate(-3deg);
}

.spc-kicker {
    display: block;
    margin: 28px auto;
    max-width: 520px;
    font-family: var(--spc-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--spc-t-1);
    padding-left: 18px;
    border-left: 2px solid var(--spc-green-500);
    text-align: left;
}

.spc-kicker .spc-green {
    color: var(--spc-green-400);
}

.spc-kicker strong {
    color: var(--spc-t-1);
}

.spc-kicker strong.spc-green-strong {
    color: var(--spc-green-400);
    font-weight: 700;
}

/* ============== Stories ============== */
.spc-stories-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 50px;
}

.spc-story-card {
    background: var(--spc-ink-2);
    border: 1px solid var(--spc-line);
    border-radius: var(--spc-r-lg);
    padding: 56px;
    max-width: 740px;
    margin: 0 auto;
    width: 100%;
}

.spc-story-card .spc-name-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--spc-line);
}

.spc-story-card .spc-name {
    font-family: var(--spc-display);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--spc-t-1);
}

.spc-story-card .spc-story-meta {
    font-family: var(--spc-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--spc-t-3);
}

.spc-story-card .spc-story-body p {
    color: var(--spc-t-2);
    margin: 0 0 1em;
}

.spc-story-card .spc-story-body p.spc-quote {
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    font-size: 21px;
    line-height: 1.45;
    color: var(--spc-t-1);
    border-left: 2px solid var(--spc-green-500);
    padding: 4px 0 4px 18px;
    margin: 18px 0;
}

.spc-story-disclaimer {
    margin-top: 32px;
    font-size: 13px;
    color: var(--spc-t-4);
    text-align: center;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.spc-story-disclaimer a {
    color: var(--spc-green-400);
    text-decoration: none;
    border-bottom: 1px dashed rgba(42, 209, 103, 0.4);
}

.spc-bold-glow {
    color: var(--spc-t-1);
    font-weight: 600;
}

/* ============== Video ============== */
.spc-video-framing {
    background: rgba(42, 209, 103, 0.06);
    border: 1px solid rgba(42, 209, 103, 0.2);
    border-radius: var(--spc-r-md);
    padding: 24px 28px;
    font-family: var(--spc-display);
    font-style: italic;
    font-size: 18px;
    line-height: 1.55;
    color: var(--spc-t-2);
    max-width: 640px;
    margin: 0 auto;
}

.spc-video-framing p {
    margin: 0 0 8px;
}

.spc-video-framing p:last-child {
    margin: 0;
}

.spc-video-wrap {
    max-width: 920px;
    margin: 40px auto 0;
}

.spc-video-undertext {
    margin-top: 20px;
    text-align: center;
    font-family: var(--spc-mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--spc-t-3);
}

/* Section images — soft fade edges blend into page bg, no harsh seam */
.spc-section-image {
    display: block;
    width: 100%;
    max-width: 920px;
    margin: 56px auto;
    -webkit-mask-image: radial-gradient(ellipse 100% 88% at center, black 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 100% 88% at center, black 60%, transparent 100%);
}

.spc-section-image.spc-section-image-medium {
    max-width: 680px;
}

.spc-section-image.spc-section-image-small {
    max-width: 560px;
}

.spc-image-caption {
    text-align: center;
    margin: -40px auto 56px;
    font-family: var(--spc-display);
    font-style: italic;
    font-size: 16px;
    color: var(--spc-t-3);
    max-width: 600px;
}

/* ============== Lessons ============== */
.spc-lessons-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 56px;
}

.spc-lesson {
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-gap: 36px;
    gap: 36px;
    padding: 36px;
    background: var(--spc-ink-2);
    border: 1px solid var(--spc-line);
    border-radius: var(--spc-r-lg);
    transition: border-color .25s, transform .25s;
}

.spc-lesson:hover {
    border-color: var(--spc-line-2);
}

.spc-lesson-thumb {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--spc-ink-3), var(--spc-ink-4));
    border-radius: var(--spc-r-md);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--spc-line);
}

.spc-lesson-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(42, 209, 103, 0.12), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(245, 158, 12, 0.06), transparent 50%);
}

.spc-lesson-num {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--spc-display);
    font-size: 56px;
    font-weight: 300;
    line-height: 1;
    color: var(--spc-green-400);
    opacity: 0.45;
    letter-spacing: -0.04em;
}

.spc-play-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(11, 20, 16, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
}

.spc-play-sm::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 12px solid var(--spc-t-1);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-left: 4px;
}

.spc-lesson-thumb .spc-duration-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.6);
    font-family: var(--spc-mono);
    font-size: 11px;
    color: var(--spc-t-1);
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.spc-lesson-meta {
    font-family: var(--spc-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--spc-green-400);
    margin-bottom: 10px;
}

.spc-lesson h3 {
    font-family: var(--spc-display);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--spc-t-1);
    letter-spacing: -0.015em;
    margin: 0 0 16px;
    text-wrap: balance;
}

.spc-lesson-body {
    font-size: 16px;
    line-height: 1.65;
    color: var(--spc-t-2);
}

.spc-lesson-body p {
    margin: 0 0 12px;
}

.spc-lesson-body p:last-child {
    margin: 0;
}

.spc-lesson-body .spc-key-inline {
    color: var(--spc-green-400);
    font-weight: 600;
    font-family: var(--spc-sans);
}

.spc-lesson-outcome {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--spc-line);
    font-style: italic;
    font-family: var(--spc-display);
    color: var(--spc-t-2);
    font-size: 16px;
    line-height: 1.5;
}

.spc-lesson-bullets {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spc-lesson-bullets li {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: var(--spc-t-2);
}

.spc-lesson-bullets li::before {
    content: "→";
    color: var(--spc-green-400);
    flex-shrink: 0;
}

.spc-bullets-label {
    font-weight: 600;
    color: var(--spc-t-1);
    margin-top: 18px;
}

/* Bonus row */
.spc-bonus-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 18px;
    gap: 18px;
    margin-top: 30px;
}

.spc-bonus {
    background: var(--spc-ink-2);
    border: 1px solid var(--spc-line);
    border-radius: var(--spc-r-lg);
    padding: 28px;
}

.spc-bonus .spc-bonus-ico {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(42, 209, 103, 0.08);
    color: var(--spc-green-400);
    font-family: var(--spc-mono);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
}

.spc-bonus h4 {
    font-family: var(--spc-display);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--spc-t-1);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.spc-bonus p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--spc-t-2);
    margin: 0;
}

.spc-tag-free {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--spc-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--spc-warm);
    padding: 4px 10px;
    background: rgba(245, 158, 12, 0.1);
    border: 1px solid rgba(245, 158, 12, 0.3);
    border-radius: var(--spc-r-pill);
}

/* ============== Price anchor ============== */
.spc-price-anchor {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.spc-price-big {
    font-family: var(--spc-display);
    font-size: clamp(72px, 11vw, 132px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--spc-green-400);
    margin: 30px 0 12px;
    white-space: nowrap;
}

.spc-price-terms {
    font-family: var(--spc-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--spc-t-3);
    margin: 0 0 50px;
}

.spc-price-terms span {
    color: var(--spc-green-400);
}

.spc-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.spc-compare-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 24px;
    gap: 24px;
    align-items: baseline;
    padding: 22px 26px;
    background: var(--spc-ink-2);
    border: 1px solid var(--spc-line);
    border-radius: var(--spc-r-md);
}

.spc-compare-list li.spc-compare-highlight {
    background: linear-gradient(160deg, rgba(42, 209, 103, 0.12), rgba(42, 209, 103, 0.04));
    border-color: rgba(42, 209, 103, 0.4);
}

.spc-compare-list .spc-compare-what {
    font-family: var(--spc-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--spc-t-1);
    letter-spacing: -0.01em;
}

.spc-compare-list .spc-compare-meta {
    display: block;
    margin-top: 4px;
    font-family: var(--spc-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--spc-t-3);
}

.spc-compare-list .spc-compare-price {
    font-family: var(--spc-display);
    font-size: 28px;
    color: var(--spc-t-1);
    letter-spacing: -0.02em;
    font-weight: 500;
}

.spc-compare-list li.spc-compare-highlight .spc-compare-price {
    color: var(--spc-green-400);
}

.spc-compare-list .spc-compare-price small {
    font-family: var(--spc-mono);
    font-size: 11px;
    color: var(--spc-t-3);
    letter-spacing: 0.06em;
    margin-left: 4px;
    font-weight: 400;
}

.spc-anchor-line {
    margin: 50px auto 0;
    max-width: 550px;
    font-family: var(--spc-display);
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: var(--spc-t-2);
}

.spc-mono-terms {
    margin-top: 14px;
    font-family: var(--spc-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--spc-t-4);
}

/* ============== Proof ============== */
.spc-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 18px;
    gap: 18px;
    margin-top: 50px;
}

.spc-testi-grid.spc-testi-grid-secondary {
    margin-top: 18px;
}

.spc-testi {
    background: var(--spc-ink-2);
    border: 1px solid var(--spc-line);
    border-radius: var(--spc-r-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.spc-testi.spc-testi-featured {
    background: linear-gradient(160deg, rgba(42, 209, 103, 0.08), var(--spc-ink-2));
    border-color: rgba(42, 209, 103, 0.3);
}

.spc-testi-stars {
    display: flex;
    gap: 3px;
    color: var(--spc-warm);
    font-size: 14px;
    letter-spacing: 1px;
}

.spc-testi blockquote {
    margin: 0;
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5;
    color: var(--spc-t-1);
    flex: 1 1;
}

.spc-testi-who {
    padding-top: 14px;
    border-top: 1px solid var(--spc-line);
    font-size: 14px;
    color: var(--spc-t-3);
}

.spc-testi-who strong {
    color: var(--spc-t-1);
    font-weight: 600;
    font-family: var(--spc-sans);
}

.spc-featured-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 5px 12px;
    background: var(--spc-green-500);
    color: var(--spc-ink);
    font-family: var(--spc-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: var(--spc-r-pill);
    white-space: nowrap;
}

.spc-testi-link {
    background: transparent;
    border-style: dashed;
    border-color: var(--spc-line-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
}

.spc-testi-link p {
    font-family: var(--spc-display);
    font-size: 18px;
    line-height: 1.4;
    color: var(--spc-t-2);
    font-style: italic;
    margin: 0;
}

.spc-proof-disclaimer {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: var(--spc-t-4);
    font-style: italic;
}

/* ============== About ============== */
.spc-about {
    background: var(--spc-ink-2);
    border-top: 1px solid var(--spc-line);
    border-bottom: 1px solid var(--spc-line);
}

.spc-about-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-gap: 56px;
    gap: 56px;
    align-items: start;
    max-width: 880px;
    margin: 0 auto;
}

.spc-about-photo {
    aspect-ratio: 4 / 5;
    border-radius: var(--spc-r-md);
    background: radial-gradient(circle at 50% 40%, rgba(42, 209, 103, 0.18), transparent 50%),
    linear-gradient(180deg, var(--spc-ink-3), var(--spc-ink-2));
    border: 1px solid var(--spc-line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.spc-about-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 120 150%27><circle cx=%2760%27 cy=%2755%27 r=%2722%27 fill=%27%23ffffff%27 opacity=%270.12%27/><path d=%27M30 130 Q 60 100 90 130%27 fill=%27%23ffffff%27 opacity=%270.12%27/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    opacity: 0.6;
}

.spc-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 1;
}

.spc-about-photo .spc-ph-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    font-family: var(--spc-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--spc-t-3);
    padding: 6px 10px;
    background: rgba(11, 20, 16, 0.6);
    border: 1px dashed var(--spc-line-2);
    border-radius: 4px;
    text-align: center;
    z-index: 2;
}

.spc-about-text h2 {
    margin: 0 0 28px;
}

.spc-about-text .spc-about-body {
    font-size: 17px;
    color: var(--spc-t-2);
}

.spc-about-text .spc-about-body p {
    margin: 0 0 16px;
}

.spc-about-text .spc-quote-line {
    font-family: var(--spc-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--spc-t-1);
    padding: 18px 0;
    margin: 14px 0;
    border-top: 1px solid var(--spc-line);
    border-bottom: 1px solid var(--spc-line);
}

.spc-about-text .spc-about-quote {
    font-family: var(--spc-display);
    font-style: italic;
    font-size: 21px;
    line-height: 1.4;
    color: var(--spc-t-1);
    padding: 4px 0 4px 18px;
    border-left: 2px solid var(--spc-green-500);
    margin: 16px 0;
}

.spc-about-text .spc-signature {
    margin-top: 24px;
    font-family: var(--spc-hand);
    font-size: 32px;
    color: var(--spc-green-400);
    font-weight: 500;
}

/* ============== Recap (Second CTA) ============== */
.spc-recap {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(160deg, var(--spc-ink-2), var(--spc-ink-3));
    border: 1px solid var(--spc-line);
    border-radius: var(--spc-r-xl);
    padding: 56px;
}

.spc-recap h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 30px;
}

.spc-recap-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spc-recap-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    grid-gap: 14px;
    gap: 14px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--spc-t-2);
}

.spc-recap-list li .spc-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(42, 209, 103, 0.12);
    color: var(--spc-green-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.spc-recap-list li strong {
    color: var(--spc-t-1);
    font-weight: 600;
}

.spc-recap-price {
    padding: 24px 0;
    border-top: 1px solid var(--spc-line);
    border-bottom: 1px solid var(--spc-line);
    margin-bottom: 28px;
    text-align: center;
}

.spc-recap-price .spc-big {
    font-family: var(--spc-display);
    font-size: 64px;
    font-weight: 400;
    color: var(--spc-green-400);
    line-height: 1;
    letter-spacing: -0.03em;
}

.spc-recap-price .spc-terms-mono {
    margin-top: 8px;
    font-family: var(--spc-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--spc-t-3);
}

.spc-recap-cta {
    text-align: center;
}

.spc-recap-cta .spc-btn {
    width: 100%;
    max-width: 480px;
    justify-content: center;
}

.spc-recap-cta .spc-recap-small {
    margin-top: 14px;
    font-size: 13px;
    color: var(--spc-t-4);
    font-style: italic;
}

.spc-recap-cta .spc-recap-small .spc-green {
    color: var(--spc-green-400);
}

.spc-stripe-link {
    margin-top: 14px;
    font-size: 13px;
    color: var(--spc-t-4);
    text-align: center;
}

.spc-terms-accept {
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.5;
}

.spc-terms-accept a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
}

.spc-terms-accept a:hover {
    color: var(--spc-green-400);
}

.spc-stripe-link a {
    color: var(--spc-t-3);
    text-decoration: underline;
    cursor: pointer;
}

.spc-stripe-link a:hover {
    color: var(--spc-green-400);
}

.spc-transaction-fallback {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    color: var(--spc-warm);
}

.spc-transaction-fallback a {
    color: var(--spc-green-400);
    text-decoration: underline;
}

.spc-soft-promise {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--spc-t-3);
    text-align: center;
    line-height: 1.55;
}

.spc-soft-promise a {
    color: var(--spc-green-400);
    text-decoration: underline;
}

/* ============== Disqualifier ============== */
.spc-dq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
    gap: 24px;
    margin-top: 50px;
}

.spc-dq-col {
    border-radius: var(--spc-r-lg);
    padding: 36px;
}

.spc-dq-no {
    background: var(--spc-ink-2);
    border: 1px solid var(--spc-line);
}

.spc-dq-yes {
    background: linear-gradient(160deg, rgba(42, 209, 103, 0.1), var(--spc-ink-2));
    border: 1px solid rgba(42, 209, 103, 0.35);
}

.spc-dq-col h3 {
    font-family: var(--spc-display);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
}

.spc-dq-no h3 {
    color: var(--spc-t-2);
}

.spc-dq-yes h3 {
    color: var(--spc-t-1);
}

.spc-dq-yes h3 .spc-green {
    color: var(--spc-green-400);
}

.spc-dq-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.spc-dq-col li {
    display: grid;
    grid-template-columns: 24px 1fr;
    grid-gap: 12px;
    gap: 12px;
    font-size: 15px;
    line-height: 1.55;
}

.spc-dq-no li {
    color: var(--spc-t-3);
}

.spc-dq-yes li {
    color: var(--spc-t-2);
}

.spc-dq-col li .spc-mark {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 700;
}

.spc-dq-no li .spc-mark {
    background: rgba(255, 255, 255, 0.06);
    color: var(--spc-t-3);
}

.spc-dq-yes li .spc-mark {
    background: rgba(42, 209, 103, 0.16);
    color: var(--spc-green-400);
}

/* ============== FAQ ============== */
.spc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--spc-line);
    border: 1px solid var(--spc-line);
    border-radius: var(--spc-r-lg);
    overflow: hidden;
    max-width: 760px;
    margin: 50px auto 0;
}

.spc-faq-item {
    background: var(--spc-ink-2);
}

.spc-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 24px 28px;
    background: transparent;
    color: var(--spc-t-1);
    border: 0;
    cursor: pointer;
    font-family: var(--spc-display);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: background .2s;
}

.spc-faq-q:hover {
    background: rgba(255, 255, 255, 0.02);
}

.spc-faq-q .spc-plus {
    flex-shrink: 0;
    margin-left: 24px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--spc-line-2);
    color: var(--spc-t-2);
    font-family: var(--spc-mono);
    font-size: 16px;
    transition: transform .25s, background .25s, border-color .25s, color .25s;
}

.spc-faq-item.spc-open .spc-faq-q .spc-plus {
    transform: rotate(45deg);
    background: var(--spc-green-500);
    border-color: var(--spc-green-500);
    color: var(--spc-ink);
}

.spc-faq-a {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding-bottom .25s;
    color: var(--spc-t-2);
    font-size: 16px;
    line-height: 1.7;
}

.spc-faq-a > div {
    padding-bottom: 24px;
}

.spc-faq-a p {
    margin: 0 0 12px;
}

.spc-faq-a p:last-child {
    margin: 0;
}

.spc-faq-item.spc-open .spc-faq-a {
    max-height: 900px;
}

/* ============== Vision ============== */
.spc-vision {
    padding: 110px 0;
    background: radial-gradient(ellipse 80% 40% at 50% 50%, rgba(245, 158, 12, 0.06), transparent 70%),
    linear-gradient(180deg, var(--spc-ink) 0%, var(--spc-ink-2) 50%, var(--spc-ink) 100%);
}

.spc-vision-body {
    max-width: 560px;
    margin: 30px auto 0;
    font-family: var(--spc-display);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.5;
    color: var(--spc-t-1);
    text-align: left;
}

.spc-vision-body p {
    margin: 0 0 1em;
}

.spc-vision-body p.spc-last {
    font-style: normal;
    font-weight: 500;
    color: var(--spc-green-400);
    font-family: var(--spc-sans);
    font-size: 0.85em;
}

/* ============== Final close ============== */
.spc-final {
    padding: 130px 0 110px;
    background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(42, 209, 103, 0.1), transparent 65%),
    linear-gradient(180deg, var(--spc-ink) 0%, #060e0a 100%);
    text-align: center;
}

.spc-final h2 {
    font-size: clamp(40px, 5.5vw, 68px);
    margin-bottom: 50px;
}

.spc-final-recognition {
    max-width: 480px;
    margin: 0 auto 40px;
    font-family: var(--spc-display);
    font-style: italic;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.45;
    color: var(--spc-t-2);
}

.spc-final-recognition p {
    margin: 0 0 6px;
}

.spc-final-body {
    max-width: 540px;
    margin: 0 auto 50px;
    font-family: var(--spc-display);
    font-weight: 300;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.45;
    color: var(--spc-t-1);
    text-align: left;
}

.spc-final-body p {
    margin: 0 0 1.1em;
}

.spc-final-body .spc-trust {
    font-style: italic;
}

.spc-final-body .spc-green {
    color: var(--spc-green-400);
}

.spc-btn-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.spc-btn-row > .spc-terms-accept,
.spc-btn-row > .spc-stripe-link,
.spc-btn-row > .spc-transaction-fallback,
.spc-btn-row > .spc-final-btn-terms {
    margin-top: 0;
}

.spc-btn-row > .spc-stripe-link {
    margin-top: 6px;
}

.spc-final-btn-terms {
    font-family: var(--spc-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--spc-t-3);
}

.spc-final-btn-terms span {
    color: var(--spc-green-400);
}

.spc-sig-final {
    margin-top: 60px;
    font-family: var(--spc-hand);
    font-size: 36px;
    color: var(--spc-green-400);
    font-weight: 500;
}

.spc-ps-block {
    margin: 56px auto 0;
    max-width: 520px;
    padding: 24px 28px 0;
    border-top: 1px solid var(--spc-line);
    font-size: 16px;
    color: var(--spc-t-2);
    line-height: 1.55;
    text-align: left;
}

.spc-ps-block strong {
    color: var(--spc-green-400);
    font-weight: 700;
    font-family: var(--spc-mono);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-right: 8px;
}

.spc-ps-block a {
    color: var(--spc-green-400);
    text-decoration: none;
    border-bottom: 1px dashed rgba(42, 209, 103, 0.4);
    padding-bottom: 1px;
}

.spc-ps-block a:hover {
    color: var(--spc-green-300);
}

/* Legal footer wrapper for ProdukacjaCopyrightNoteWithPhoneNumber */
.spc-legal-wrap {
    background: #060e0a;
    padding: 40px 24px 80px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.spc-legal-wrap > * {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.spc-legal-wrap a {
    color: #5ce08d !important;
}

/* ============== Responsive ============== */
@media (max-width: 900px) {
    .spc-three-qs {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spc-bonus-row {
        grid-template-columns: 1fr;
    }

    .spc-testi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .spc-enemies-grid {
        grid-template-columns: 1fr;
    }

    .spc-lesson {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .spc-dq-grid {
        grid-template-columns: 1fr;
    }

    .spc-compare-list li {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .spc-about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .spc-recap {
        padding: 36px 24px;
    }

    .spc-story-card {
        padding: 36px 24px;
    }

    .spc-section {
        padding: 80px 0;
    }
}

@media (max-width: 540px) {
    .spc-card-frame .spc-doodle {
        display: none;
    }

    .spc-container {
        padding: 0 22px;
    }

    .spc-hero {
        padding: 64px 0 80px;
    }

    .spc-hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .spc-hero-actions .spc-btn,
    .spc-hero-actions .spc-scroll-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .spc-hero-credibility {
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .spc-what-is-body {
        font-size: 17px;
    }

    .spc-what-is-pointe {
        font-size: 19px;
    }
}

