/* Yevaud Platforms LLC — site styles */

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

:root {
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --text-muted: #888;
    --bg-page: #fafafa;
    --bg-white: #fff;
    --bg-subtle: #f4f4f2;
    --border: #ddd;
    --accent: #1a3a5c;
    --accent-light: #2a5080;
    --font-mono: 'SF Mono', 'Fira Mono', 'Consolas', 'Liberation Mono', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-page);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */

header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}

.site-identity a {
    text-decoration: none;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Hero */

.hero {
    background-color: var(--accent);
    color: #fff;
    padding: 4rem 0 3.5rem;
    border-bottom: 3px solid var(--accent-light);
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
}

.hero .tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

/* Sections */

section {
    padding: 3rem 0;
}

section + section {
    border-top: 1px solid var(--border);
}

section h2 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: var(--font-mono);
}

/* Products */

.product-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-entry {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.product-entry:last-child {
    border-bottom: none;
}

.product-meta {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.product-name:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.product-domain {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Contact */

.contact p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */

footer {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-address {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-address strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Responsive */

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .product-meta {
        flex-direction: column;
        gap: 0.2rem;
    }
}
