/* Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --text: #000000;
    --border: #000000;
    --spacing-base: 1.5rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-base);
}

section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border);
}

footer {
    padding: 3rem 0;
    font-size: 0.9rem;
    text-align: center;
}

/* Navigation */
header {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.25rem;
}

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

nav ul li a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Home / Hero */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--border);
    transition: background-color 0.2s, color 0.2s;
}

.btn-primary {
    background-color: var(--text);
    color: var(--bg);
}

.btn-secondary:hover {
    background-color: var(--text);
    color: var(--bg);
}

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

/* Cards */
.card {
    border: 2px solid var(--border);
    padding: 2rem;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Status Labels */
.status {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.2rem 0.4rem;
    border: 1px solid var(--border);
}

/* About / Content Layout */
.content-section {
    max-width: 800px;
}

.content-section h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.content-section p {
    margin-bottom: 1.5rem;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 4rem 0;
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    min-height: 150px;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Simple mobile nav could be added */
    }
}
