/* Template 16 - Minimalist Stark / Swiss Design */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
    --stark-white: #ffffff;
    --stark-off: #fafafa;
    --stark-gray: #e5e5e5;
    --stark-medium: #999999;
    --stark-dark: #333333;
    --stark-black: #111111;
    --accent-red: #ff3333;
    --accent-blue: #0055ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--stark-black);
    background: var(--stark-white);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Header - Grid Based */
.site-header {
    background: var(--stark-white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--stark-black);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    height: 80px;
}

.site-logo a {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: var(--stark-black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.site-logo a:hover {
    color: var(--accent-red);
}

.site-nav {
    border-left: 1px solid var(--stark-black);
    height: 100%;
    display: flex;
    align-items: center;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    align-items: center;
    height: 100%;
}

.site-nav li {
    height: 100%;
    border-right: 1px solid var(--stark-gray);
}

.site-nav li:last-child {
    border-right: none;
}

.site-nav a {
    color: var(--stark-dark);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.site-nav a:hover {
    background: var(--stark-black);
    color: var(--stark-white);
}

/* Hero Section */
.section.head {
    padding: 10rem 0 8rem;
    border-bottom: 1px solid var(--stark-gray);
    position: relative;
}

.section.head::before {
    content: '01';
    position: absolute;
    top: 4rem;
    right: 4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--stark-medium);
    letter-spacing: 2px;
}

.section.head h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--stark-black);
    line-height: 1;
    max-width: 900px;
    letter-spacing: -2px;
}

.section.head h1 span {
    color: var(--accent-red);
}

.section.head p {
    font-size: 1.125rem;
    color: var(--stark-dark);
    max-width: 550px;
    line-height: 1.8;
    padding-left: 2rem;
    border-left: 2px solid var(--stark-black);
}

/* Section Styling */
.section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--stark-gray);
}

.section header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.section header h2 {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--stark-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 0.5rem;
}

.section header p {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    color: var(--stark-black);
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Footer - Grid Split */
.footer {
    background: var(--stark-black);
    color: var(--stark-white);
    padding: 0;
    margin-top: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.footer-about {
    padding: 4rem;
    border-right: 1px solid var(--stark-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-tagline {
    color: var(--stark-medium);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 400px;
}

.footer-links {
    padding: 4rem;
    display: flex;
    align-items: center;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--stark-white);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-links a:hover::before {
    width: 20px;
}

.footer-bottom {
    text-align: left;
    padding: 2rem 4rem;
    border-top: 1px solid var(--stark-dark);
}

.copyright a {
    color: var(--stark-medium);
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: var(--stark-black);
    margin-top: 24px;
    margin-bottom: 12px;
    text-align: left;
    font-weight: 700;
    letter-spacing: -0.5px;
}
