:root {
    --bg-primary: #0a0a0c;
    --bg-secondary: #16161a;
    --text-primary: #f0f0f2;
    --text-secondary: #a1a1aa;
    --accent: #14b8a6;
    --accent-glow: rgba(20, 184, 166, 0.3);
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.03);
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.logo span {
    color: var(--accent);
}

.nav-links a {
    margin-left: 32px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hero */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: linear-gradient(to right, var(--accent), #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

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

.btn-outline:hover {
    background: var(--border);
}

.hero-visual {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 1;
}

.blob {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.2) translate(-50px, 20px); }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.post-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 60px;
}

.post-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.post-category {
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-date {
    color: var(--text-secondary);
    font-size: 13px;
}

.post-card h2 {
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
    margin-bottom: 32px;
}

.post-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.highlight-box {
    background: var(--glass);
    border-left: 4px solid var(--accent);
    padding: 32px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
}

.highlight-box h3 {
    font-size: 24px;
    color: var(--text-primary);
    line-height: 1.4;
}

.conclusion {
    font-weight: 600;
    color: var(--text-primary) !important;
    font-size: 20px !important;
}

.post-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author strong {
    display: block;
    font-size: 16px;
}

.author span {
    font-size: 13px;
    color: var(--text-secondary);
}

.share-links {
    display: flex;
    gap: 12px;
}

.btn-icon {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-icon:hover {
    background: var(--border);
    transform: scale(1.05);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.bento-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: transform 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent);
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

.connect-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.connect-links a {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 14px;
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero { padding: 80px 0 40px; }
    .hero-actions { flex-direction: column; }
    .post-card { padding: 24px; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item.large { grid-column: span 1; }
    .post-footer { flex-direction: column; gap: 24px; align-items: flex-start; }
    .hero-visual { display: none; }
}
