/* ============================================================
   TRIMERous TECHNOLOGY
   SECURITY & COMPLIANCE PAGE
   Premium / Next-Gen / Professional CSS
============================================================ */


/* ============================================================
   ROOT
============================================================ */

.security-compliance-page {
    --sc-orange: #f05125;
    --sc-orange-light: #ff7447;
    --sc-yellow: #faa41a;

    --sc-dark: #07111f;
    --sc-dark-2: #0a1626;
    --sc-dark-3: #0e1c2e;

    --sc-text: #142033;
    --sc-muted: #68758a;
    --sc-light: #f6f8fb;
    --sc-white: #ffffff;

    --sc-border: rgba(16, 31, 52, 0.10);
    --sc-dark-border: rgba(255, 255, 255, 0.09);

    --sc-shadow:
        0 18px 55px rgba(7, 17, 31, 0.09);

    --sc-shadow-heavy:
        0 25px 80px rgba(7, 17, 31, 0.16);

    font-family: "Poppins", sans-serif;
    color: var(--sc-text);
    overflow: hidden;
}

.security-compliance-page *,
.security-compliance-page *::before,
.security-compliance-page *::after {
    box-sizing: border-box;
}


/* ============================================================
   GLOBAL
============================================================ */

.security-compliance-page a {
    text-decoration: none;
}

.security-compliance-page p {
    line-height: 1.85;
}

.security-compliance-page .container {
    position: relative;
    z-index: 2;
}

.security-compliance-page section {
    position: relative;
}


/* ============================================================
   HERO
============================================================ */

.sc-hero {
    min-height: 690px;
    padding: 150px 0 115px;
    display: flex;
    align-items: center;
    position: relative;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(240, 81, 37, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 15% 80%,
            rgba(250, 164, 26, 0.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #050d18 0%,
            #091626 52%,
            #07111f 100%
        );

    color: #fff;
    isolation: isolate;
}


/* grid */
.sc-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1),
        rgba(0,0,0,0.15)
    );

    pointer-events: none;
}


/* orange light */
.sc-hero::after {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: 80px;

    border-radius: 50%;

    background: rgba(240, 81, 37, 0.14);

    filter: blur(70px);

    pointer-events: none;
}


.sc-hero-content {
    max-width: 900px;
}


.sc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 27px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffb45c;
}


.sc-eyebrow-icon {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(250, 164, 26, 0.32);
    border-radius: 11px;

    background: rgba(250, 164, 26, 0.08);

    color: var(--sc-yellow);

    box-shadow:
        0 0 25px rgba(250, 164, 26, 0.10);
}


.sc-hero h1 {
    max-width: 900px;

    margin: 0 0 28px;

    font-size: clamp(44px, 5.5vw, 76px);
    line-height: 1.08;

    font-weight: 700;
    letter-spacing: -2.5px;

    color: #ffffff;
}


.sc-hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #ff7146 0%,
            #ffad3d 52%,
            #ffd074 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.sc-hero-text {
    max-width: 750px;

    margin: 0 0 38px;

    font-size: 17px;
    line-height: 1.9;

    color: rgba(255,255,255,0.68);
}


.sc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


.sc-btn {
    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.sc-btn:hover {
    transform: translateY(-3px);
}


.sc-btn-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--sc-orange),
            var(--sc-orange-light)
        );

    box-shadow:
        0 14px 30px rgba(240, 81, 37, 0.25);
}


.sc-btn-primary:hover {
    color: #fff;

    box-shadow:
        0 18px 40px rgba(240, 81, 37, 0.35);
}


.sc-btn-secondary {
    color: rgba(255,255,255,0.85);

    border: 1px solid rgba(255,255,255,0.16);

    background: rgba(255,255,255,0.04);

    backdrop-filter: blur(10px);
}


.sc-btn-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.08);
}


.sc-security-note {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 35px;

    color: rgba(255,255,255,0.48);

    font-size: 12px;
}


.sc-security-note i {
    color: #ffae3f;
    font-size: 15px;
}


/* ============================================================
   TRUST STRIP
============================================================ */

.sc-trust-strip {
    position: relative;
    z-index: 5;

    margin-top: -1px;

    padding: 26px 0;

    background: #fff;

    border-bottom: 1px solid var(--sc-border);

    box-shadow:
        0 10px 35px rgba(7,17,31,0.05);
}


.sc-trust-item {
    min-height: 75px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 8px 18px;

    border-right: 1px solid var(--sc-border);
}


.sc-trust-item:last-child {
    border-right: 0;
}


.sc-trust-icon {
    flex: 0 0 47px;

    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: var(--sc-orange);

    background:
        linear-gradient(
            135deg,
            rgba(240,81,37,0.09),
            rgba(250,164,26,0.10)
        );
}


.sc-trust-item strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13px;
    font-weight: 700;

    color: var(--sc-text);
}


.sc-trust-item span {
    display: block;

    font-size: 11px;
    line-height: 1.5;

    color: var(--sc-muted);
}


/* ============================================================
   GENERAL SECTIONS
============================================================ */

.sc-section {
    padding: 110px 0;
}


.sc-introduction {
    background: #fff;
}


.sc-section-heading {
    max-width: 850px;

    margin-bottom: 55px;
}


.sc-section-heading.center {
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.sc-section-label {
    display: inline-block;

    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;

    color: var(--sc-orange);
}


.sc-section-heading h2,
.sc-content-block h2,
.sc-incident h2,
.sc-final-content h2 {
    margin: 0 0 20px;

    font-size: clamp(31px, 4vw, 48px);

    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -1.2px;

    color: var(--sc-text);
}


.sc-section-heading h2 span,
.sc-content-block h2 span,
.sc-incident h2 span,
.sc-final-content h2 span {
    color: var(--sc-orange);
}


.sc-section-heading p {
    max-width: 760px;

    margin: 0;

    font-size: 15px;

    color: var(--sc-muted);
}


/* ============================================================
   INTRO
============================================================ */

.sc-intro-grid {
    align-items: stretch;
}


.sc-content-card {
    height: 100%;

    padding: 42px;

    border: 1px solid var(--sc-border);
    border-radius: 18px;

    background: #fff;

    box-shadow: var(--sc-shadow);
}


.sc-content-card p {
    margin: 0 0 19px;

    font-size: 14px;

    color: #637085;
}


.sc-content-card p:last-child {
    margin-bottom: 0;
}


.sc-highlight-card {
    position: relative;

    height: 100%;

    padding: 42px;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #091525,
            #0d1d30
        );

    box-shadow:
        0 22px 55px rgba(7,17,31,0.18);

    color: #fff;
}


.sc-highlight-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background: rgba(240,81,37,0.17);

    filter: blur(10px);
}


.sc-highlight-top {
    position: relative;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 35px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #ffb16c;
}


.sc-mini-icon {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255,255,255,0.07);

    color: #ffab3e;
}


.sc-highlight-card h3 {
    position: relative;

    margin: 0 0 18px;

    font-size: 32px;

    font-weight: 700;

    color: #fff;
}


.sc-highlight-card p {
    position: relative;

    margin: 0;

    font-size: 14px;

    color: rgba(255,255,255,0.60);
}


.sc-highlight-line {
    width: 55px;
    height: 2px;

    margin: 30px 0 18px;

    background:
        linear-gradient(
            90deg,
            var(--sc-orange),
            var(--sc-yellow)
        );
}


.sc-highlight-caption {
    font-size: 11px;
    letter-spacing: 1px;

    color: rgba(255,255,255,0.40);
}


/* ============================================================
   FRAMEWORK
============================================================ */

.sc-framework {
    background:
        linear-gradient(
            180deg,
            #f6f8fb 0%,
            #ffffff 100%
        );
}


.sc-framework-grid {
    row-gap: 25px;
}


.sc-framework-card {
    position: relative;

    height: 100%;

    padding: 35px;

    overflow: hidden;

    border: 1px solid var(--sc-border);
    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 12px 40px rgba(7,17,31,0.055);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.sc-framework-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(240,81,37,0.22);

    box-shadow:
        0 25px 65px rgba(7,17,31,0.11);
}


.sc-card-number {
    position: absolute;

    right: 25px;
    top: 20px;

    font-size: 45px;

    font-weight: 800;

    line-height: 1;

    color: rgba(7,17,31,0.045);
}


.sc-card-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 15px;

    color: var(--sc-orange);

    background:
        linear-gradient(
            135deg,
            rgba(240,81,37,0.09),
            rgba(250,164,26,0.12)
        );

    font-size: 19px;
}


.sc-framework-card h3 {
    margin: 0 0 13px;

    font-size: 20px;

    font-weight: 700;

    color: var(--sc-text);
}


.sc-framework-card > p {
    min-height: 76px;

    margin: 0 0 22px;

    font-size: 13px;

    color: var(--sc-muted);
}


.sc-framework-card ul {
    padding: 0;
    margin: 0;

    list-style: none;
}


.sc-framework-card li {
    position: relative;

    padding-left: 21px;

    margin-bottom: 10px;

    font-size: 12px;

    color: #4d5a6d;
}


.sc-framework-card li:last-child {
    margin-bottom: 0;
}


.sc-framework-card li::before {
    content: "\f00c";

    position: absolute;

    left: 0;
    top: 2px;

    font-family: FontAwesome;

    font-size: 10px;

    color: var(--sc-orange);
}


/* ============================================================
   PRIVACY
============================================================ */

.sc-privacy {
    background: #fff;
}


.sc-visual-card {
    position: relative;

    min-height: 490px;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at center,
            rgba(240,81,37,0.14),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #06101d,
            #0b192a
        );

    box-shadow:
        0 30px 75px rgba(7,17,31,0.18);
}


.sc-visual-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}


.sc-visual-lock {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 110px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -58%);

    border-radius: 30px;

    color: #ffad48;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.09),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);

    font-size: 42px;

    box-shadow:
        0 0 65px rgba(240,81,37,0.14);
}


.sc-visual-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    border: 1px solid rgba(250,164,26,0.17);

    border-radius: 50%;

    transform: translate(-50%, -58%);

    animation: scPulse 4s ease-in-out infinite;
}


.ring-one {
    width: 210px;
    height: 210px;
}


.ring-two {
    width: 330px;
    height: 330px;

    animation-delay: 1s;
}


@keyframes scPulse {
    0%, 100% {
        opacity: .35;
        transform: translate(-50%, -58%) scale(.96);
    }

    50% {
        opacity: .8;
        transform: translate(-50%, -58%) scale(1.04);
    }
}


.sc-visual-caption {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 32px;

    padding: 22px;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;

    background: rgba(255,255,255,0.045);

    backdrop-filter: blur(12px);
}


.sc-visual-caption strong {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;

    color: #fff;
}


.sc-visual-caption span {
    display: block;

    font-size: 11px;
    line-height: 1.7;

    color: rgba(255,255,255,0.46);
}


.sc-content-block {
    padding-left: 45px;
}


.sc-content-block > p {
    margin-bottom: 18px;

    font-size: 14px;

    color: var(--sc-muted);
}


.sc-check-list {
    margin-top: 30px;
}


.sc-check-item {
    display: flex;

    gap: 15px;

    margin-bottom: 22px;
}


.sc-check-item > span {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: var(--sc-orange);

    background:
        rgba(240,81,37,0.08);
}


.sc-check-item strong {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;

    color: var(--sc-text);
}


.sc-check-item p {
    margin: 0;

    font-size: 12px;

    color: var(--sc-muted);
}


.sc-inline-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 5px;

    font-size: 13px;
    font-weight: 600;

    color: var(--sc-orange);

    transition: gap .25s ease;
}


.sc-inline-link:hover {
    color: var(--sc-orange-light);
    gap: 14px;
}


/* ============================================================
   COMPLIANCE
============================================================ */

.sc-compliance {
    background:
        linear-gradient(
            180deg,
            #f7f9fc,
            #eef2f7
        );
}


.sc-compliance-grid {
    row-gap: 25px;
}


.sc-compliance-card {
    height: 100%;

    padding: 35px;

    border: 1px solid var(--sc-border);
    border-radius: 18px;

    background: rgba(255,255,255,0.88);

    box-shadow:
        0 12px 40px rgba(7,17,31,0.055);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.sc-compliance-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 55px rgba(7,17,31,0.10);
}


.sc-compliance-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(240,81,37,0.09),
            rgba(250,164,26,0.11)
        );

    color: var(--sc-orange);

    font-size: 20px;
}


.sc-compliance-card h3 {
    margin: 0 0 12px;

    font-size: 19px;

    color: var(--sc-text);
}


.sc-compliance-card p {
    margin: 0;

    font-size: 13px;

    color: var(--sc-muted);
}


/* ============================================================
   DISCLAIMER
============================================================ */

.sc-compliance-disclaimer {
    display: flex;

    gap: 18px;

    margin-top: 38px;

    padding: 27px 30px;

    border: 1px solid rgba(240,81,37,0.17);
    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(240,81,37,0.045),
            rgba(250,164,26,0.04)
        );
}


.sc-disclaimer-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: var(--sc-orange);

    background: rgba(240,81,37,0.09);
}


.sc-compliance-disclaimer strong {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    color: var(--sc-text);
}


.sc-compliance-disclaimer p {
    margin: 0 0 8px;

    font-size: 11px;

    line-height: 1.75;

    color: var(--sc-muted);
}


.sc-compliance-disclaimer p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   INCIDENT RESPONSE
============================================================ */

.sc-incident {
    background: #fff;
}


.sc-incident p {
    max-width: 650px;

    margin-bottom: 18px;

    font-size: 14px;

    color: var(--sc-muted);
}


.sc-response-timeline {
    position: relative;

    padding-left: 30px;
}


.sc-response-timeline::before {
    content: "";

    position: absolute;

    top: 18px;
    bottom: 18px;
    left: 15px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(240,81,37,0.65),
            rgba(250,164,26,0.15)
        );
}


.sc-timeline-item {
    position: relative;

    display: flex;

    gap: 18px;

    margin-bottom: 28px;
}


.sc-timeline-item:last-child {
    margin-bottom: 0;
}


.sc-timeline-number {
    position: relative;
    z-index: 2;

    flex: 0 0 31px;

    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: -30px;

    border-radius: 50%;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--sc-orange),
            var(--sc-yellow)
        );

    font-size: 9px;
    font-weight: 700;

    box-shadow:
        0 0 0 7px #fff;
}


.sc-timeline-item strong {
    display: block;

    margin-bottom: 5px;

    font-size: 15px;

    color: var(--sc-text);
}


.sc-timeline-item p {
    margin: 0;

    font-size: 12px;

    color: var(--sc-muted);
}


/* ============================================================
   RESPONSIBLE DISCLOSURE
============================================================ */

.sc-disclosure {
    padding-top: 30px;

    background: #fff;
}


.sc-disclosure-box {
    position: relative;

    overflow: hidden;

    padding: 55px;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(240,81,37,0.17),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #081423,
            #0d1e31
        );

    box-shadow:
        0 25px 70px rgba(7,17,31,0.16);
}


.sc-disclosure-box::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;
}


.sc-disclosure-box .container {
    position: relative;
}


.sc-disclosure-box .sc-section-label {
    color: #ffae53;
}


.sc-disclosure-box h2 {
    margin: 0 0 18px;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.2;

    color: #fff;
}


.sc-disclosure-box h2 span {
    color: #ff9d52;
}


.sc-disclosure-box p {
    max-width: 680px;

    margin: 0 0 14px;

    font-size: 13px;

    color: rgba(255,255,255,0.55);
}


.sc-disclosure-action {
    position: relative;

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;

    background: rgba(255,255,255,0.045);

    backdrop-filter: blur(10px);
}


.sc-disclosure-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 12px;

    color: #ffad46;

    background: rgba(250,164,26,0.10);
}


.sc-disclosure-action h3 {
    margin: 0 0 9px;

    font-size: 17px;

    color: #fff;
}


.sc-disclosure-action p {
    margin-bottom: 20px;

    font-size: 11px;

    line-height: 1.7;
}


.sc-disclosure-action .sc-btn {
    width: 100%;
}


/* ============================================================
   PRINCIPLES
============================================================ */

.sc-principles {
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f7f9fc
        );
}


.sc-principles-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;
}


.sc-principle {
    position: relative;

    min-height: 255px;

    padding: 30px 25px;

    overflow: hidden;

    border: 1px solid var(--sc-border);
    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 10px 35px rgba(7,17,31,0.045);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.sc-principle:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(7,17,31,0.10);
}


.sc-principle-number {
    position: absolute;

    top: 16px;
    right: 18px;

    font-size: 34px;

    font-weight: 800;

    color: rgba(7,17,31,0.045);
}


.sc-principle > i {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 11px;

    color: var(--sc-orange);

    background:
        rgba(240,81,37,0.08);
}


.sc-principle h3 {
    margin: 0 0 10px;

    font-size: 17px;

    color: var(--sc-text);
}


.sc-principle p {
    margin: 0;

    font-size: 11px;

    line-height: 1.75;

    color: var(--sc-muted);
}


/* ============================================================
   FINAL CTA
============================================================ */

.sc-final-cta {
    padding-top: 40px;
    padding-bottom: 115px;

    background: #f7f9fc;
}


.sc-final-box {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #07111f,
            #0b1b2d
        );

    box-shadow:
        0 30px 80px rgba(7,17,31,0.18);
}


.sc-final-box::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(240,81,37,0.22),
            transparent 65%
        );
}


.sc-final-box::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;
}


.sc-final-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding: 75px 65px;
}


.sc-final-content .sc-section-label {
    color: #ffad51;
}


.sc-final-content h2 {
    margin-bottom: 20px;

    color: #fff;
}


.sc-final-content h2 span {
    color: #ff9d52;
}


.sc-final-content p {
    max-width: 700px;

    margin: 0 0 30px;

    font-size: 14px;

    color: rgba(255,255,255,0.55);
}


.sc-final-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


.sc-btn-light {
    color: rgba(255,255,255,0.76);

    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(255,255,255,0.045);
}


.sc-btn-light:hover {
    color: #fff;

    background: rgba(255,255,255,0.09);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1199px) {

    .sc-principles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sc-trust-item {
        border-right: 0;
    }

    .sc-content-block {
        padding-left: 20px;
    }

}


/* ============================================================
   TABLET / MOBILE
============================================================ */

@media (max-width: 991px) {

    .sc-hero {
        min-height: auto;

        padding:
            125px 0
            90px;
    }

    .sc-hero h1 {
        letter-spacing: -1.5px;
    }

    .sc-trust-strip {
        padding: 20px 0;
    }

    .sc-trust-item {
        padding: 15px 8px;
    }

    .sc-section {
        padding: 85px 0;
    }

    .sc-content-card {
        margin-bottom: 25px;
    }

    .sc-content-block {
        padding-left: 0;
        padding-top: 45px;
    }

    .sc-visual-card {
        min-height: 430px;
    }

    .sc-disclosure-box {
        padding: 45px 35px;
    }

    .sc-disclosure-action {
        margin-top: 30px;
    }

    .sc-principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-final-content {
        padding: 60px 45px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .sc-hero {
        padding:
            105px 0
            75px;
    }

    .sc-eyebrow {
        margin-bottom: 20px;

        font-size: 10px;
        letter-spacing: 2px;
    }

    .sc-eyebrow-icon {
        width: 34px;
        height: 34px;
    }

    .sc-hero h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .sc-hero-text {
        font-size: 14px;
    }

    .sc-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sc-btn {
        width: 100%;
    }

    .sc-security-note {
        align-items: flex-start;
    }

    .sc-trust-item {
        border-bottom: 1px solid var(--sc-border);
        padding: 16px 0;
    }

    .sc-trust-item:last-child {
        border-bottom: 0;
    }

    .sc-section {
        padding: 70px 0;
    }

    .sc-section-heading {
        margin-bottom: 38px;
    }

    .sc-section-heading h2,
    .sc-content-block h2,
    .sc-incident h2 {
        font-size: 31px;
    }

    .sc-content-card,
    .sc-highlight-card {
        padding: 30px;
    }

    .sc-framework-card {
        padding: 30px;
    }

    .sc-framework-card > p {
        min-height: auto;
    }

    .sc-visual-card {
        min-height: 390px;
    }

    .sc-compliance-disclaimer {
        flex-direction: column;

        padding: 24px;
    }

    .sc-response-timeline {
        margin-top: 35px;
    }

    .sc-disclosure {
        padding-top: 10px;
    }

    .sc-disclosure-box {
        padding: 35px 25px;
    }

    .sc-disclosure-box h2 {
        font-size: 31px;
    }

    .sc-principles-grid {
        grid-template-columns: 1fr;
    }

    .sc-principle {
        min-height: auto;
    }

    .sc-final-content {
        padding: 50px 25px;
    }

    .sc-final-content h2 {
        font-size: 32px;
    }

    .sc-final-actions {
        flex-direction: column;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .sc-hero h1 {
        font-size: 36px;
    }

    .sc-hero-text {
        font-size: 13px;
    }

    .sc-highlight-card h3 {
        font-size: 27px;
    }

    .sc-visual-lock {
        width: 90px;
        height: 90px;

        font-size: 34px;
    }

    .ring-one {
        width: 175px;
        height: 175px;
    }

    .ring-two {
        width: 270px;
        height: 270px;
    }

    .sc-visual-caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .sc-compliance-card {
        padding: 28px;
    }

}


/* ============================================================
   ACCESSIBILITY
============================================================ */

.security-compliance-page a:focus-visible,
.security-compliance-page button:focus-visible {
    outline: 3px solid rgba(250,164,26,0.55);
    outline-offset: 4px;
}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .security-compliance-page *,
    .security-compliance-page *::before,
    .security-compliance-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

}