﻿/* =========================================================
   STATISTICAL VS TRADITIONAL
========================================================= */

.svt-page {
    background: #0a1710;
    color: #18221c;
}

.svt-inner {
    width: min(1480px, calc(100% - 64px));
    margin: 0 auto;
}

.svt-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #78a949;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.svt-kicker-gold {
    color: #d2ad54;
}

.svt-center {
    text-align: center;
}

.svt-section-heading {
    max-width: 920px;
    margin: 0 auto 34px;
}

    .svt-section-heading h2,
    .svt-certainty h2,
    .svt-balance h2,
    .svt-takeaway h2,
    .svt-final h2 {
        margin: 0;
        font-family: Georgia, "Times New Roman", serif;
        font-weight: 500;
        line-height: 1.06;
    }

    .svt-section-heading h2 {
        color: #17231b;
        font-size: clamp(32px, 3.2vw, 48px);
    }

    .svt-section-heading p {
        max-width: 820px;
        margin: 14px auto 0;
        color: #667168;
        font-size: 14px;
        line-height: 1.65;
    }


/* =========================================================
   BUTTONS
========================================================= */

.svt-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

    .svt-btn:hover {
        transform: translateY(-1px);
    }

.svt-btn-gold {
    border: 1px solid #c6a34f;
    background: #c6a34f;
    color: #08130d;
}

    .svt-btn-gold:hover {
        border-color: #d5b65f;
        background: #d5b65f;
        color: #08130d;
    }

.svt-btn-outline-dark {
    border: 1px solid rgba(255,255,255,.26);
    background: transparent;
    color: #eef3ef;
}

    .svt-btn-outline-dark:hover {
        border-color: #d0d8d2;
        background: rgba(255,255,255,.05);
        color: #fff;
    }

.svt-btn-outline {
    border: 1px solid rgba(255,255,255,.30);
    background: transparent;
    color: #f1f4f1;
}

    .svt-btn-outline:hover {
        border-color: #d2dbd4;
        background: rgba(255,255,255,.05);
        color: #fff;
    }


/* =========================================================
   HERO - DARK
========================================================= */

.svt-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 82% 20%, rgba(199,161,75,.10), transparent 22% ), linear-gradient( 135deg, #07110c 0%, #0a1710 54%, #14251b 100% );
}

.svt-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
    align-items: stretch;
}

.svt-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 64px 64px 0;
}

    .svt-hero-copy h1 {
        max-width: 780px;
        margin: 0;
        color: #f6f1e7;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(48px, 5vw, 74px);
        font-weight: 500;
        line-height: .99;
        letter-spacing: -.025em;
    }

.svt-hero-rule {
    width: 52px;
    height: 2px;
    margin-top: 22px;
    background: #c6a34f;
}

.svt-hero-copy h2 {
    margin: 16px 0 0;
    color: #d2ad54;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 500;
    line-height: 1.15;
}

.svt-hero-lede {
    max-width: 680px;
    margin: 16px 0 0;
    color: #c7d0c9;
    font-size: 15px;
    line-height: 1.65;
}

.svt-hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.svt-hero-visual {
    position: relative;
    overflow: hidden;
}

    .svt-hero-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient( 90deg, #0a1710 0%, rgba(10,23,16,.76) 10%, rgba(10,23,16,.22) 36%, rgba(10,23,16,.05) 100% );
        pointer-events: none;
    }

    .svt-hero-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 3;
        background: linear-gradient( 180deg, rgba(7,17,12,.08), rgba(7,17,12,.22) );
        pointer-events: none;
    }

    .svt-hero-visual img {
        width: 100%;
        height: 100%;
        min-height: 540px;
        display: block;
        object-fit: cover;
        filter: brightness(.74) saturate(.88);
    }


/* =========================================================
   COMPARISON - DARK
========================================================= */

.svt-comparison {
    padding: 56px 0 60px;
    background: radial-gradient( circle at 50% 0%, rgba(199,161,75,.05), transparent 30% ), #0b1b13;
}

    .svt-comparison .svt-section-heading h2 {
        color: #f4efe5;
    }

    .svt-comparison .svt-section-heading p {
        color: #9facA2;
    }

    .svt-comparison .svt-kicker {
        color: #d2ad54;
    }

.svt-comparison-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.svt-method-card {
    min-height: 520px;
    padding: 30px 30px 26px;
    border-radius: 14px;
}

.svt-traditional-card {
    border: 1px solid rgba(199,161,75,.28);
    background: radial-gradient( circle at 90% 10%, rgba(199,161,75,.08), transparent 34% ), linear-gradient( 145deg, #231f14, #30281a );
}

.svt-statistical-card {
    border: 1px solid rgba(84,145,101,.30);
    background: radial-gradient( circle at 90% 10%, rgba(75,130,90,.10), transparent 34% ), linear-gradient( 145deg, #0c281d, #123929 );
}

.svt-versus {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 68px;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    border: 5px solid #0b1b13;
    border-radius: 50%;
    background: #07120d;
    color: #f5f1e7;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

    .svt-versus span {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 20px;
    }

.svt-method-heading {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 16px;
    align-items: center;
}

.svt-method-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
}

.svt-method-icon-traditional {
    border: 1px solid rgba(199,161,75,.48);
    background: #2b2417;
}

.svt-method-icon-statistical {
    border: 1px solid rgba(90,150,105,.40);
    background: #0d3424;
}

.svt-method-icon img {
    width: 92%;
    height: 92%;
    object-fit: contain;
}

.svt-method-heading h3 {
    margin: 0;
    color: #f4efe5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.08;
}

.svt-method-heading span {
    display: block;
    margin-top: 5px;
    color: #d1ad54;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.svt-statistical-card .svt-method-heading span {
    color: #80b07f;
}

.svt-method-intro {
    margin: 22px 0 0;
    color: #bac4bc;
    font-size: 13px;
    line-height: 1.6;
}

.svt-method-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

    .svt-method-list li {
        position: relative;
        padding: 9px 0 9px 26px;
        border-bottom: 1px solid rgba(255,255,255,.07);
        color: #d6ddd8;
        font-size: 12px;
        line-height: 1.45;
    }

        .svt-method-list li:last-child {
            border-bottom: 0;
        }

        .svt-method-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 9px;
            color: #d1ad54;
            font-weight: 900;
        }

.svt-statistical-card .svt-method-list li::before {
    color: #76a978;
}

.svt-method-question {
    margin-top: 22px;
    padding: 16px 18px;
    border-left: 3px solid #c19a44;
    background: rgba(255,255,255,.025);
}

.svt-statistical-card .svt-method-question {
    border-left-color: #5e9a70;
}

.svt-method-question span {
    display: block;
    color: #8fa096;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.svt-method-question strong {
    display: block;
    margin-top: 5px;
    color: #f2ede3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
}


/* =========================================================
   CERTAINTY VS PROBABILITY - LIGHT TRANSITION
========================================================= */

.svt-certainty {
    padding: 50px 0;
    background: #eee9df;
}

.svt-certainty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.svt-certainty h2 {
    color: #17231b;
    font-size: clamp(32px, 3vw, 46px);
}

.svt-certainty p {
    margin: 14px 0 0;
    color: #5d6860;
    font-size: 13px;
    line-height: 1.65;
}

.svt-certainty-panel {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 26px;
    border: 1px solid #d6ccbd;
    border-radius: 14px;
    background: #fbf8f1;
}

    .svt-certainty-panel > div:not(.svt-certainty-arrow) {
        min-height: 150px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 10px;
    }

    .svt-certainty-panel > div:first-child {
        border: 1px solid rgba(185,145,63,.30);
        background: #f4eee3;
    }

    .svt-certainty-panel > div:last-child {
        border: 1px solid rgba(54,107,72,.26);
        background: #edf4ed;
    }

    .svt-certainty-panel span {
        display: block;
        color: #8a7560;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .svt-certainty-panel > div:last-child span {
        color: #52705d;
    }

    .svt-certainty-panel strong {
        display: block;
        margin-top: 7px;
        color: #183020;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.25;
    }

.svt-certainty-arrow {
    color: #ad8635;
    font-size: 28px;
}


/* =========================================================
   WORKFLOW - LIGHT
========================================================= */

.svt-workflow {
    padding: 54px 0 58px;
    background: #f8f4ec;
}

.svt-workflow-grid {
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr;
    align-items: stretch;
    gap: 0;
}

.svt-workflow-card {
    min-height: 360px;
    padding: 26px 24px;
    text-align: center;
    border: 1px solid #d9d0c2;
    border-radius: 12px;
    background: #fbf8f2;
}

.svt-workflow-card-emphasis {
    border-color: rgba(199,161,75,.45);
    background: radial-gradient( circle at 50% 0, rgba(199,161,75,.08), transparent 34% ), #fbf8f2;
}

.svt-workflow-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 15px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(199,161,75,.44);
    border-radius: 50%;
    background: #0d3626;
}

    .svt-workflow-icon img {
        width: 94%;
        height: 94%;
        object-fit: contain;
    }

.svt-workflow-label {
    display: block;
    color: #7a847c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.svt-workflow-card h3 {
    margin: 7px 0 0;
    color: #183020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.12;
}

.svt-workflow-card p {
    margin: 12px 0 0;
    color: #647068;
    font-size: 11.5px;
    line-height: 1.55;
}

.svt-workflow-result {
    display: block;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #ddd5c9;
    color: #315e42;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.svt-workflow-arrow {
    display: grid;
    place-items: center;
    color: #ad8635;
    font-size: 32px;
}


/* =========================================================
   LIMITATIONS - WARM LIGHT
========================================================= */

.svt-limitations {
    padding: 52px 0;
    background: #eae4d9;
}

.svt-limitations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.svt-limitations-card {
    padding: 28px 30px;
    border: 1px solid rgba(166,107,74,.25);
    border-radius: 12px;
    background: #fbf7f1;
}

.svt-limitations-statistical {
    border-color: rgba(55,108,73,.24);
    background: #f4f8f3;
}

.svt-limitations-card h3 {
    margin: 0;
    color: #173020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
}

.svt-limitations-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.svt-limitations-card li {
    position: relative;
    padding: 8px 0 8px 20px;
    color: #59645c;
    font-size: 11.5px;
    line-height: 1.55;
}

    .svt-limitations-card li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #9e5d3d;
        font-weight: 900;
    }

.svt-limitations-statistical li::before {
    color: #326849;
}


/* =========================================================
   BALANCE - DARK
========================================================= */

.svt-balance {
    padding: 56px 0;
    background: radial-gradient( circle at 80% 45%, rgba(199,161,75,.08), transparent 30% ), linear-gradient( 135deg, #07120d, #0c2419, #123323 );
}

.svt-balance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.svt-balance .svt-kicker {
    color: #d2ad54;
}

.svt-balance h2 {
    color: #f4efe5;
    font-size: clamp(32px, 3vw, 46px);
}

.svt-balance-copy p {
    margin: 14px 0 0;
    color: #aab7ae;
    font-size: 13px;
    line-height: 1.65;
}

.svt-text-link {
    display: inline-block;
    margin-top: 18px;
    color: #d0b462;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

    .svt-text-link:hover {
        color: #e0c678;
        text-decoration: underline;
    }

.svt-balance-visual {
    min-height: 300px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.1fr;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(199,161,75,.26);
    border-radius: 14px;
    background: radial-gradient( circle at 50% 45%, rgba(199,161,75,.06), transparent 38% ), rgba(255,255,255,.02);
}

.svt-balance-mare,
.svt-balance-stallion,
.svt-balance-decision {
    text-align: center;
}

    .svt-balance-mare img,
    .svt-balance-stallion img,
    .svt-balance-decision img {
        width: 88px;
        height: 88px;
        display: block;
        margin: 0 auto 10px;
        object-fit: contain;
    }

.svt-balance-visual span {
    display: block;
    color: #8fa096;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.svt-balance-visual strong {
    display: block;
    margin-top: 5px;
    color: #f3eee4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.svt-balance-plus,
.svt-balance-equals {
    color: #d1ad54;
    font-size: 26px;
    font-weight: 800;
}


/* =========================================================
   DECISION RULES - LIGHT
========================================================= */

.svt-rules {
    padding: 52px 0;
    background: #f1ece3;
}

.svt-rules-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.svt-rule-card {
    min-height: 245px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid #d8cfc1;
    border-radius: 9px;
    background: #fbf8f2;
}

.svt-rule-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 13px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(199,161,75,.42);
    border-radius: 50%;
    background: #0d3626;
}

    .svt-rule-icon img {
        width: 94%;
        height: 94%;
        object-fit: contain;
    }

.svt-rule-card h3 {
    margin: 0;
    color: #183020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
}

.svt-rule-card p {
    margin: 9px 0 0;
    color: #68736b;
    font-size: 10.5px;
    line-height: 1.5;
}


/* =========================================================
   TAKEAWAY - DARK
========================================================= */

.svt-takeaway {
    padding: 34px 0;
    background: linear-gradient( 135deg, #07120d, #0b2117 55%, #103324 );
}

.svt-takeaway-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr 1.15fr;
    gap: 26px;
    align-items: center;
}

.svt-takeaway-mark {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    align-items: center;
}

.svt-takeaway-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(199,161,75,.55);
    border-radius: 50%;
    background: #0d3626;
}

    .svt-takeaway-icon img {
        width: 94%;
        height: 94%;
        object-fit: contain;
    }

.svt-takeaway h2 {
    color: #f5f0e6;
    font-size: 28px;
}

.svt-takeaway-copy {
    padding: 0 24px;
    border-left: 1px solid rgba(255,255,255,.08);
    border-right: 1px solid rgba(255,255,255,.08);
}

    .svt-takeaway-copy p {
        margin: 0 0 10px;
        color: #aab7ae;
        font-size: 12px;
        line-height: 1.6;
    }

        .svt-takeaway-copy p:last-child {
            margin-bottom: 0;
        }

.svt-takeaway-quote {
    position: relative;
    padding-left: 34px;
}

    .svt-takeaway-quote::before {
        content: "“";
        position: absolute;
        left: 0;
        top: -14px;
        color: #c6a34f;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 58px;
        line-height: 1;
    }

    .svt-takeaway-quote blockquote {
        margin: 0;
        color: #d8bf7d;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 21px;
        font-style: italic;
        line-height: 1.45;
    }


/* =========================================================
   FINAL CTA - DARK
========================================================= */

.svt-final {
    padding: 48px 0;
    border-top: 1px solid rgba(199,161,75,.16);
    background: radial-gradient( circle at 85% 40%, rgba(199,161,75,.10), transparent 28% ), linear-gradient( 130deg, #07120d, #0c2419, #123323 );
}

.svt-final-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.svt-final h2 {
    color: #f4efe5;
    font-size: clamp(32px, 3vw, 46px);
}

.svt-final p {
    max-width: 780px;
    margin: 14px 0 0;
    color: #aab7ae;
    font-size: 13px;
    line-height: 1.65;
}

.svt-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================================
   RESPONSIVE - 1200
========================================================= */

@media (max-width: 1200px) {

    .svt-rules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   RESPONSIVE - 1000
========================================================= */

@media (max-width: 1000px) {

    .svt-hero-grid,
    .svt-certainty-grid,
    .svt-balance-grid {
        grid-template-columns: 1fr;
    }

    .svt-hero-copy {
        padding: 52px 0 38px;
    }

    .svt-hero-visual img {
        min-height: 400px;
    }

    .svt-workflow-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .svt-workflow-arrow {
        transform: rotate(90deg);
        min-height: 40px;
    }

    .svt-balance-visual {
        min-height: 0;
    }

    .svt-takeaway-grid {
        grid-template-columns: 1fr;
    }

    .svt-takeaway-copy {
        padding: 22px 0;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .svt-final-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   RESPONSIVE - 800
========================================================= */

@media (max-width: 800px) {

    .svt-comparison-grid,
    .svt-limitations-grid {
        grid-template-columns: 1fr;
    }

    .svt-versus {
        position: relative;
        left: auto;
        top: auto;
        width: 58px;
        height: 58px;
        margin: -10px auto;
        transform: none;
        border-color: #0b1b13;
    }

    .svt-method-card {
        min-height: 0;
    }

    .svt-certainty-panel {
        grid-template-columns: 1fr;
    }

    .svt-certainty-arrow {
        text-align: center;
        transform: rotate(90deg);
    }

    .svt-balance-visual {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .svt-balance-plus,
    .svt-balance-equals {
        transform: rotate(90deg);
    }

    .svt-rules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE - 650
========================================================= */

@media (max-width: 650px) {

    .svt-inner {
        width: min(100% - 32px, 1480px);
    }

    .svt-hero-copy h1 {
        font-size: 43px;
    }

    .svt-hero-actions {
        flex-direction: column;
    }

    .svt-btn {
        width: 100%;
    }

    .svt-hero-visual img {
        min-height: 320px;
    }

    .svt-method-heading {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .svt-method-icon {
        margin: 0 auto;
    }

    .svt-method-card {
        padding: 24px 20px;
    }

    .svt-rules-grid {
        grid-template-columns: 1fr;
    }

    .svt-rule-card {
        min-height: 0;
    }

    .svt-takeaway-mark {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .svt-takeaway-icon {
        margin: 0 auto;
    }

    .svt-takeaway-quote {
        padding-left: 30px;
    }

    .svt-final-actions {
        flex-direction: column;
    }
}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 420px) {

    .svt-hero-copy h1 {
        font-size: 38px;
    }
}
