@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Manrope:wght@300;400;600;800&display=swap');

:root {
    --bg-main: #060608;
    --bg-secondary: #0d0d10;
    --accent: #d4af37;
    --accent-hover: #f0c94d;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(18, 18, 23, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --gradient-hero: radial-gradient(circle at 50% -20%, #1e1b4b 0%, #060608 60%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
}

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

nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

nav ul li a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 160px 5% 100px;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    transition: opacity 0.5s ease;
}

.hero h2 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 700px;
    transition: opacity 0.5s ease;
}

.hero-btn-container {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Sections General */
section {
    padding: 100px 5%;
}

.section-label {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

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

.card h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-muted);
}

/* Text Rich Layout */
.text-column {
    max-width: 800px;
    margin: 0 auto;
}

.text-column p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

/* Footer */
footer {
    padding: 80px 5% 40px;
    border-top: 1px solid var(--border);
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-list h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list ul {
    list-style: none;
}

.footer-list ul li {
    margin-bottom: 0.8rem;
}

.footer-list ul li a {
    color: var(--text-muted);
}

.footer-list ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Blog Styles */
.article-header {
    padding: 180px 5% 60px;
    text-align: center;
    background: var(--gradient-hero);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.article-content h2 { margin: 2rem 0 1rem; }
.article-content p { margin-bottom: 1.5rem; color: #cbd5e1; }

/* Responsive */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding-top: 140px; }
    nav { display: none; }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 16, 0.95);
    border-top: 1px solid var(--border);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}
#cookie-banner p { font-size: 0.9rem; color: var(--text-muted); }
