/* =========================================
   FullyKnow Trust Center - Premium Dark Theme
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
}

html {
    scroll-behavior: smooth;
}

body,
html {
    min-height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.65;
    cursor: default;
}

/* --- Typography Mapping --- */
h1,
h2,
h3 {
    line-height: 1.15;
}

h1 {
    font-family: 'Geist', sans-serif;
    font-size: clamp(3rem, 7vw, 4.8rem);
    font-weight: 500;
    letter-spacing: -1.5px;
    margin: 0 0 1.5rem;
    max-width: 15ch;
    color: #f0f074;
}

h2 {
    font-family: 'Geist', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    letter-spacing: -1px;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.lede {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.kicker {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #C2410C;
    margin-bottom: 1rem;
}

p {
    font-family: 'League Spartan', sans-serif;
}

/* --- Links & Interactions --- */
a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

a:hover,
a:focus {
    color: #ffffff;
    outline: 2px solid #C2410C;
    outline-offset: 4px;
    border-radius: 4px;
}

hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 4rem 0;
}

/* --- Accessibility --- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: #151515;
    color: #fff;
    border: 2px solid #C2410C;
    padding: .75rem 1rem;
    z-index: 10000;
    border-radius: 8px;
}

/* --- Layout --- */
.wrapper {
    width: min(1200px, calc(100% - 4%));
    margin: 0 auto;
}

main {
    padding: 10rem 0 5rem 0;
}

/* --- Navigation / Glassmorphism Header --- */
.site-header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1280px;
    z-index: 9999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(25, 25, 25, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.brand {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.brand a {
    color: aliceblue;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* --- Cards Grid --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.card:hover {
    outline: 2px solid #C2410C;
    outline-offset: 4px;
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.03);
}

.card p:first-of-type {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    
}

/* --- Document Lists --- */
.document-list {
    display: grid;
    gap: 1.25rem;
    list-style: none;
}

.document-list li {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    
    transition: all 0.3s ease;
}

.document-list li i {
    align-self: center;
    justify-self: end;
    
    font-size: 2.4rem;
}

.document-list strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.document-list a {
    cursor: pointer !important;
}

/* --- Footer --- */
.site-footer {
    margin-top: 6rem;
    background: rgba(25, 25, 25, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0;
    text-align: center;
}

.footer-inner p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.footer-inner strong {
    font-family: 'Geist', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .site-header {
        top: 1rem;
        width: 95%;
    }

    .header-inner {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        border-radius: 24px;
        gap: 1.5rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    main {
        padding: 15rem 0 4rem 0;
    }

    .wrapper {
        width: min(900px, calc(100% - 9%));
        margin: 0 auto;
    }
}
