:root {
    --blue: #2e3192;
    --blue-dark: #1c1f70;
    --cyan: #00aeef;
    --red: #bf1e2e;
    --ink: #121826;
    --text: #4b5563;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f6f8fc;
    --white: #ffffff;
    --dark: #080a24;

    --shadow: 0 18px 45px rgba(18, 24, 38, 0.12);
    --shadow-soft: 0 10px 30px rgba(18, 24, 38, 0.06);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--ink);
}

body.trust-center-page {
    background:
        radial-gradient(circle at top left, rgba(0, 174, 239, 0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

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

a {
    color: inherit;
}

.shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.985);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(18, 24, 38, 0.06);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 285px;
    text-decoration: none;
}

.brand img,
.logo-fallback {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 12px;
}

.logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: white;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(46, 49, 146, 0.24);
}

.brand span {
    min-width: 0;
}

.brand strong {
    display: block;
    color: var(--blue);
    font-size: 1rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.brand small {
    display: block;
    max-width: 235px;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    margin-left: auto;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    color: #374151;
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-cta {
    min-height: 42px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--blue);
    color: white !important;
    box-shadow: 0 12px 24px rgba(46, 49, 146, 0.18);
}

.nav-cta:hover {
    background: var(--blue-dark);
    color: white !important;
}

/* Language Switcher */

.language-switcher {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    height: 38px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
}

.language-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 30px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #374151;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.language-option img {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.12);
}

.language-option.active,
.language-option:hover {
    background: rgba(46, 49, 146, 0.08);
    color: var(--blue);
}

/* Shared UI */

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(46, 49, 146, 0.08);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow.light {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 14px 32px rgba(46, 49, 146, 0.25);
}

.primary:hover {
    background: var(--blue-dark);
    color: white;
}

.secondary {
    background: white;
    color: var(--blue);
    border: 1px solid var(--line);
}

.secondary:hover {
    border-color: rgba(46, 49, 146, 0.32);
    box-shadow: var(--shadow-soft);
}

.white {
    background: white;
    color: var(--blue);
}

.white:hover {
    background: #f7f9ff;
    color: var(--blue);
}

.outline-white {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-color: rgba(255, 255, 255, 0.68);
}

.text-link {
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}

.text-link:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 86px;
    background:
        radial-gradient(circle at top left, rgba(0, 174, 239, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(46, 49, 146, 0.16), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 100px;
    right: -190px;
    width: 540px;
    height: 540px;
    border-radius: 999px;
    background: rgba(46, 49, 146, 0.08);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -230px;
    left: 42%;
    width: 470px;
    height: 470px;
    border-radius: 999px;
    background: rgba(0, 174, 239, 0.1);
}

.trust-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 62px;
    align-items: center;
}

.hero-copy h1 {
    margin: 22px 0 20px;
    max-width: 860px;
    font-size: clamp(2.55rem, 4.7vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.058em;
}

.hero-lead {
    margin: 0;
    max-width: 710px;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-tags span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 800;
}

/* Trust Hero Panel */

.trust-hero-panel {
    position: relative;
    display: grid;
    gap: 16px;
}

.trust-hero-panel::before {
    content: "";
    position: absolute;
    inset: -24px -20px auto auto;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: rgba(0, 174, 239, 0.15);
    filter: blur(4px);
}

.trust-panel-card,
.trust-panel-mini-grid > div {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(46, 49, 146, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.trust-panel-card.main {
    overflow: hidden;
    padding: 30px;
    border-radius: 30px;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.34), transparent 42%),
        linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: var(--shadow);
}

.trust-panel-card.main::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -54px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.trust-panel-card.main span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: white;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-panel-card.main strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 18px;
    max-width: 430px;
    font-size: 2.05rem;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.trust-panel-card.main p {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    max-width: 430px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.trust-panel-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.trust-panel-mini-grid > div {
    padding: 20px;
    border-radius: 22px;
}

.trust-panel-mini-grid strong {
    display: block;
    color: var(--blue);
    font-size: 1.05rem;
}

.trust-panel-mini-grid span {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Trust Strip */

.trust-strip {
    background: linear-gradient(135deg, var(--blue), #080a24);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    padding: 28px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid strong {
    display: block;
    font-size: 1rem;
}

.trust-grid span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Sections */

.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 44px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    margin-right: auto;
    margin-left: auto;
}

.section-heading h2,
.final-conversion-box h2,
.trust-responsibility-box h2 {
    margin: 18px 0 16px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.section-heading p,
.final-conversion-box p,
.trust-responsibility-box p {
    margin: 0;
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.8;
}

/* Trust Principles */

.trust-explain-section {
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.decision-grid,
.trust-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.decision-card,
.trust-principle-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.trust-principle-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.trust-principle-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(46, 49, 146, 0.08);
    color: var(--blue);
    font-weight: 900;
}

.trust-principle-card h3 {
    margin: 20px 0 10px;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.trust-principle-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}

/* Evidence Library */

.evidence-section {
    background: var(--soft);
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.evidence-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 285px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: white;
    box-shadow: var(--shadow-soft);
}

.evidence-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.evidence-card.restricted::before {
    background: linear-gradient(90deg, var(--red), var(--blue));
}

.evidence-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 174, 239, 0.08);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.evidence-card.restricted .evidence-label {
    background: rgba(191, 30, 46, 0.08);
    color: var(--red);
}

.evidence-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.32rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.evidence-card p {
    margin: 12px 0 0;
    color: var(--text);
    line-height: 1.7;
}

.evidence-card small {
    display: block;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.45;
}

.evidence-link {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    padding-top: 22px;
}

.trust-note {
    margin-top: 22px;
    padding: 24px 26px;
    border: 1px solid rgba(46, 49, 146, 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.12), transparent 32%),
        #ffffff;
    box-shadow: var(--shadow-soft);
}

.trust-note strong {
    display: block;
    color: var(--blue);
    font-size: 1.05rem;
}

.trust-note p {
    margin: 8px 0 0;
    color: var(--text);
    line-height: 1.75;
}

/* Shared Responsibility */

.trust-responsibility-section {
    background:
        radial-gradient(circle at bottom left, rgba(46, 49, 146, 0.1), transparent 30%),
        #ffffff;
}

.trust-responsibility-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 34px;
    align-items: center;
    padding: 40px;
    border: 1px solid rgba(46, 49, 146, 0.12);
    border-radius: 34px;
    background: white;
    box-shadow: var(--shadow);
}

.trust-responsibility-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 7px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.trust-responsibility-box > div {
    position: relative;
    z-index: 1;
}

.trust-responsibility-list {
    display: grid;
    gap: 14px;
}

.trust-responsibility-list > div {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--soft);
}

.trust-responsibility-list strong {
    display: block;
    color: var(--blue);
    font-size: 1.1rem;
}

.trust-responsibility-list span {
    display: block;
    margin-top: 8px;
    color: var(--text);
    line-height: 1.65;
}

/* Final CTA */

.final-conversion-section {
    padding: 0 0 92px;
    background: #ffffff;
}

.final-conversion-box {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: 34px;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.25), transparent 36%),
        linear-gradient(135deg, var(--blue), #080a24);
    box-shadow: var(--shadow);
}

.final-conversion-box::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 330px;
    height: 330px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.final-conversion-box > * {
    position: relative;
    z-index: 1;
}

.final-conversion-box h2 {
    max-width: 830px;
    color: white;
}

.final-conversion-box p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

/* Footer */

.site-footer {
    background: #080a24;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 56px 0 38px;
}

.footer-grid strong {
    display: block;
    color: white;
    font-size: 1.16rem;
}

.footer-grid p {
    max-width: 360px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.footer-grid h4 {
    margin: 0 0 14px;
    color: white;
    font-size: 0.96rem;
}

.footer-grid a {
    display: block;
    width: fit-content;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
    line-height: 1.35;
    text-decoration: none;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* Accessibility */

a:focus-visible,
.button:focus-visible,
.language-option:focus-visible {
    outline: 3px solid rgba(0, 174, 239, 0.45);
    outline-offset: 3px;
}

/* Responsive */

@media (max-width: 1120px) {
    .nav {
        align-items: center;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .brand {
        min-width: auto;
        max-width: none;
    }

    .nav-links {
        width: 100%;
        margin-left: 0;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .trust-hero-grid {
        gap: 42px;
    }

    .evidence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .trust-hero-grid,
    .trust-responsibility-box,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .decision-grid,
    .trust-principles-grid {
        grid-template-columns: 1fr;
    }

    .trust-hero-panel {
        max-width: 620px;
    }

    .trust-responsibility-box {
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, 1160px);
    }

    .site-header {
        position: sticky;
    }

    .nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 12px 0 14px;
    }

    .brand {
        width: 100%;
        min-width: 0;
    }

    .brand img,
    .logo-fallback {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 11px;
    }

    .brand strong {
        font-size: 0.98rem;
    }

    .brand small {
        max-width: 260px;
        font-size: 0.78rem;
    }

    .nav-links {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px 12px;
    }

    .nav-links > a:not(.nav-cta) {
        min-height: auto;
        font-size: 0.92rem;
        line-height: 1.2;
    }

    .nav-cta {
        order: 20;
        width: auto;
        min-height: 36px;
        padding: 8px 14px;
        font-size: 0.9rem;
        box-shadow: 0 10px 20px rgba(46, 49, 146, 0.16);
    }

    .language-switcher {
        order: 21;
        height: 36px;
        margin-left: 0;
    }

    .language-option {
        height: 28px;
        padding: 4px 8px;
    }

    .language-option img {
        width: 20px;
        height: 20px;
    }

    .hero {
        padding: 58px 0;
    }

    .hero-copy h1 {
        font-size: 2.45rem;
    }

    .hero-lead {
        font-size: 1.04rem;
    }

    .hero-actions {
        width: 100%;
    }

    .button {
        width: 100%;
    }

    .trust-panel-card.main {
        padding: 24px;
        border-radius: 26px;
    }

    .trust-panel-card.main strong {
        font-size: 1.72rem;
    }

    .trust-panel-mini-grid,
    .trust-grid,
    .evidence-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid div {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .section {
        padding: 68px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .decision-card,
    .trust-principle-card,
    .evidence-card,
    .trust-responsibility-box,
    .final-conversion-box {
        padding: 24px;
        border-radius: 24px;
    }

    .trust-responsibility-list > div {
        padding: 18px;
    }

    .final-conversion-section {
        padding-bottom: 68px;
    }

    .footer-grid {
        gap: 28px;
        padding: 42px 0 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .hero-copy h1 {
        font-size: 2.18rem;
    }

    .section-heading h2,
    .trust-responsibility-box h2,
    .final-conversion-box h2 {
        font-size: 1.9rem;
    }

    .hero-tags span {
        width: 100%;
    }

    .trust-panel-mini-grid > div,
    .evidence-card,
    .trust-note {
        padding: 20px;
    }
}