:root {
    --bg: #0f0e17;
    --surface: #1a1825;
    --border: #2d2b3a;
    --text: #fffffe;
    --text-muted: #a7a9be;
    --accent: #c9a84c;
    --accent-dark: #8b6914;
    --burgundy: #6b2d3e;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

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

header {
    text-align: center;
    margin-bottom: 3rem;
}

.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    border: 1px solid var(--accent-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent), #f0d78c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

.hero {
    text-align: center;
    margin: 3rem 0;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-muted);
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.2s;
}

.card:hover {
    border-color: var(--accent-dark);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tech {
    margin: 4rem 0;
    text-align: center;
}

.tech h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-width: 160px;
}

.step-num {
    background: var(--accent);
    color: var(--bg);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-tech {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.arrow {
    color: var(--accent);
    font-size: 1.5rem;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.subtle {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.6;
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .pipeline { flex-direction: column; }
    .arrow { transform: rotate(90deg); }
}

.icon-showcase {
    text-align: center;
    margin: -1rem 0 2rem;
}
.gentleman-icon {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 8px 24px rgba(201, 168, 76, 0.3));
}

.install {
    margin-top: 3rem;
}
.install h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}
.install-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}
.install-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
}
.install-step .step-num {
    width: 32px;
    height: 32px;
    background: var(--accent-dark);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.install-step h4 {
    margin-bottom: 0.25rem;
    color: var(--text);
}
.install-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}
.install-step code {
    background: rgba(201,168,76,0.15);
    color: var(--accent);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}
