/* Gridee Minimalist Design System - Editorial Style */

:root {
    --bg-body: #ffffff;
    --bg-subtle: #f5f5f7;
    --text-primary: #111111;
    --text-secondary: #6e6e73;
    --accent: #000000;
    --divider: #e5e5e5;

    --font-stack: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;

    --max-width: 960px;
    /* Tighter width for better reading experience */
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-body: #000000;
        --bg-subtle: #1c1c1e;
        --text-primary: #f5f5f7;
        --text-secondary: #86868b;
        --accent: #ffffff;
        --divider: #333333;
    }
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    background-color: var(--bg-subtle);
    /* Matches footer for parallax reveal */
    color: var(--text-primary);
    font-family: var(--font-stack);
    line-height: 1.6;
    padding-bottom: 0;
    /* Handled by wrapper */
}

.parallax-wrapper {
    background-color: var(--bg-body);
    position: relative;
    z-index: 2;
    margin-bottom: 200px;
    /* Must match footer height */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    /* Shadow to separate content from footer */
    min-height: 100vh;
    padding-bottom: 1px;
    /* Prevent margin collapse */
}

/* Typography */
h1,
h2,
h3 {
    color: var(--text-primary);
    letter-spacing: -0.03em;
    font-weight: 600;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.03em;
    /* Tighter for modern look */
}

h2 {
    font-size: 1.75rem;
    margin-top: 60px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    /* border-bottom removed for split layout */
}

h3 {
    font-size: 1.1rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

p,
li {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
    /* Increased for readability */
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--divider);
    transition: border-color 0.2s;
}

a:hover {
    border-bottom-color: var(--accent);
}

/* Layout */
.page-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.hero-header {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    /* Fog moved to global overlay */
}

/* Global Fog Overlay */
.fog-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-body) 10%, var(--bg-subtle) 40%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 9999;
    /* On top of everything */
    pointer-events: none;

    /* The Expansion Animation */
    animation: fogExpand 2.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* Dark mode fog adjustment */
@media (prefers-color-scheme: dark) {
    .fog-overlay {
        background: radial-gradient(circle at center, transparent 0%, var(--bg-body) 10%, var(--bg-subtle) 40%, rgba(0, 0, 0, 0.95) 100%);
    }
}

/* Fog Expansion Keyframes */
@keyframes fogExpand {
    0% {
        transform: translate(-25%, -25%) scale(0.4);
        /* Start concentrated top-left */
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(3);
        /* Expand massively to clear screen */
        opacity: 0;
    }
}

/* Text Reveal (Subtle, letting the fog do the work) */
.hero-header h1 {
    opacity: 0;
    animation: simpleFade 2s ease-out 0.6s forwards;
    /* Delayed */
    position: relative;
    z-index: 1;
}

.last-updated {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 16px;
    opacity: 0;
    animation: simpleFade 2s ease-out 0.9s forwards;
    position: relative;
    z-index: 1;
}

@keyframes simpleFade {
    from {
        opacity: 0;
        transform: scale(0.98);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Sticky Nav */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--divider);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;

    /* Mist Animation Initial State */
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
    filter: blur(12px);
    pointer-events: none;
    will-change: opacity, transform, filter;
    transition:
        opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        filter 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (prefers-color-scheme: dark) {
    .sticky-header {
        background: rgba(0, 0, 0, 0.8);
    }
}

.sticky-header.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.sticky-title {
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.sticky-action {
    font-size: 13px;
    cursor: pointer;
    color: var(--text-secondary);
}

.sticky-action:hover {
    color: var(--text-primary);
}

/* Swiss Grid Navigation (Supreme Professional) */
.swiss-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    /* The 'Grid' lines are created by the gap */
    background: var(--divider);
    /* The color of the grid lines */
    border: 1px solid var(--divider);
    margin: 80px 0 120px;
    background-clip: padding-box;
}

.swiss-card {
    background: var(--bg-body);
    /* Cards sit on top of the grid lines */
    padding: 32px 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px;
    transition: background 0.3s var(--ease-smooth);
    position: relative;
    border: none;
    /* Reset default link border */
}

.swiss-card:hover {
    background: var(--bg-subtle);
    border-bottom: none;
    /* Ensure no link underline appears */
}

.swiss-content {
    display: flex;
    flex-direction: column;
}

.swiss-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    opacity: 0.6;
    font-family: monospace;
    /* Technical feel */
}

.swiss-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: block;
}

.swiss-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.swiss-icon {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    align-self: flex-end;
    /* Icon at bottom right */
    opacity: 0.4;
    transition: all 0.3s var(--ease-smooth);
}

.swiss-card:hover .swiss-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
    .swiss-grid-container {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
        border-left: none;
        border-right: none;
    }

    .swiss-card {
        height: auto;
        padding: 24px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .swiss-icon {
        align-self: center;
    }
}

/* Content Sections - Editorial Flow */
/* Content Sections - Professional Split Layout (Refined) */
/* Content Sections - Professional Split Layout (Refined) */
.content-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    position: relative;

    /* Mist & Focus Mode */
    /* Mist & Focus Mode */
    opacity: 0.2;
    /* Deep fade for inactive, but visible enough to scan */
    transform: scale(0.95) translateY(10px);
    /* Recede into background */
    filter: blur(5px);
    /* Softer mist effect */
    transition:
        opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform, filter;
}

.content-card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .fog-overlay {
        display: none;
    }

    .content-card {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .hero-header h1,
    .last-updated,
    .content-card p,
    .content-card li {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

/* Ensure the first content card relies on scroll/observer like the others */
/* .content-card:first-of-type animation removed to respect scroll trigger */

/* Cascade Text Reveal (Misty Style) */
.content-card p,
.content-card li {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    /* Misty start */
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth), filter 0.8s var(--ease-smooth);
}

.content-card.active p,
.content-card.active li {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger delays */
.content-card.active p:nth-child(1) {
    transition-delay: 0.1s;
}

.content-card.active p:nth-child(2) {
    transition-delay: 0.2s;
}

.content-card.active ul {
    transition-delay: 0.3s;
}

.content-card.active li:nth-child(1) {
    transition-delay: 0.35s;
}

.content-card.active li:nth-child(2) {
    transition-delay: 0.4s;
}

.content-card.active li:nth-child(3) {
    transition-delay: 0.45s;
}

.content-card.active li:nth-child(4) {
    transition-delay: 0.5s;
}

/* The Refined Separator (Always Visible) */
.content-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--divider) 20%, var(--divider) 80%, transparent 100%);
    transform: scaleX(1);
    opacity: 1;
}

.content-card:last-of-type::after {
    display: none;
}

.content-card:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Living Sidebar Navigation (Horizontal Layout) */
.content-card h2 {
    grid-column: 1;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    border: none;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    position: sticky;
    top: 140px;
    height: fit-content;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    opacity: 0.5;
}

.content-card h2::before {
    content: "";
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    transition: all 0.3s var(--ease-smooth);
    margin-bottom: 0;
    flex-shrink: 0;
}

.content-card.active h2 {
    color: var(--text-primary);
    opacity: 1;
    transform: translateX(4px);
}

.content-card.active h2::before {
    opacity: 1;
    transform: scale(1.1);
}

.content-card h2::after {
    content: "";
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s var(--ease-smooth);
    transform-origin: top;
}

.content-card.active h2::after {
    transform: scaleY(1);
}

/* Icons for specific sections */
.content-card h2::before {
    background-color: var(--text-primary);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-image: none !important;
}

.content-card:nth-of-type(3) h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E");
}

.content-card:nth-of-type(4) h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.content-card:nth-of-type(5) h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
}

.content-card:nth-of-type(6) h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.content-card:nth-of-type(7) h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
}

.content-card:nth-of-type(8) h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}

@media (prefers-color-scheme: dark) {
    .content-card h2::before {
        filter: none;
    }
}

.content-card>*:not(h2) {
    grid-column: 2;
}

@media (max-width: 768px) {
    .content-card {
        display: block;
        margin-bottom: 80px;
        opacity: 1;
        filter: none;
    }

    .content-card h2 {
        position: static;
        margin-bottom: 24px;
        font-size: 16px;
        color: var(--text-primary);
        text-transform: none;
        letter-spacing: 0;
    }

    .content-card>*:not(h2) {
        grid-column: auto;
    }
}

ul {
    list-style: none;
    margin-bottom: 24px;
}

li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}

::selection {
    background: var(--text-primary);
    color: var(--bg-body);
}

li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 3px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 50%;
    opacity: 0.8;
}

/* Parallax Wrapper */
.parallax-wrapper {
    position: relative;
    z-index: 2;
    /* Above the footer */
}

/* Contact Section (Refined) */
.contact-section {
    margin-top: 140px;
    padding: 80px 0;
    border-top: none;
    text-align: center;
    position: relative;
    /* Background handled by parallax-wrapper */
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--divider);
}

/* Magnetic Button */
.email-link {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 16px 32px;
    border-radius: 100px;
    background: var(--bg-subtle);
    display: inline-block;
}

.email-link:hover {
    background: #e5e5e7;
}

@media (prefers-color-scheme: dark) {
    .email-link:hover {
        background: #2c2c2e;
    }
}

/* Footer (Parallax Reveal) */
.site-footer {
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
    padding: 0;
    opacity: 0.6;
    letter-spacing: 0.02em;

    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 1;
    /* Below parallax-wrapper (z-index 2) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-subtle);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        /* Slightly smaller for better fit */
        margin-bottom: 16px;
    }

    .hero-header {
        padding: 100px 0 40px;
        /* Tighter top padding */
    }

    /* Speed up fog on mobile */
    .fog-overlay {
        animation-duration: 2s;
    }

    .content-card {
        display: block;
        margin-bottom: 48px;
        /* Reduced from 80px */
        padding-bottom: 48px;
        opacity: 1;
        filter: none;
    }

    .content-card h2 {
        position: static;
        margin-bottom: 16px;
        font-size: 15px;
        color: var(--text-primary);
        text-transform: none;
        letter-spacing: 0;
    }

    .content-card>*:not(h2) {
        grid-column: auto;
    }

    /* Tighter paragraph spacing */
    p,
    li {
        font-size: 16px;
        /* Slightly smaller body text */
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .contact-section {
        margin-top: 60px;
        margin-bottom: 0;
        padding: 60px 0;
    }

    .parallax-wrapper {
        margin-bottom: 150px;
        /* Mobile footer height */
    }

    .site-footer {
        height: 150px;
    }
}

/* About Page Icons */
#what-we-do h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
}

#core-features h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
}

#how-it-works h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='12' x2='21' y2='12'%3E%3C/line%3E%3Cline x1='8' y1='18' x2='21' y2='18'%3E%3C/line%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'%3E%3C/line%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'%3E%3C/line%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='12' x2='21' y2='12'%3E%3C/line%3E%3Cline x1='8' y1='18' x2='21' y2='18'%3E%3C/line%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'%3E%3C/line%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

#technology h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'%3E%3C/polyline%3E%3Cpolyline points='8 6 2 12 8 18'%3E%3C/polyline%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'%3E%3C/polyline%3E%3Cpolyline points='8 6 2 12 8 18'%3E%3C/polyline%3E%3C/svg%3E");
}

#data-privacy h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3C/svg%3E");
}

#availability h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
}

#governance h2::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
}