/* -------------------------------------------------------------------------- */
/*                          LIGHT THEME VARIABLES                             */
/* -------------------------------------------------------------------------- */
:root {
    /* Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    
    /* Accent Colors - Keep your brand colors */
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-500: #f97316;
    --green-500: #22c55e;
    --blue-500: #3b82f6;
    --red-500: #ef4444;

    /* Gradients */
    --gradient-nura: linear-gradient(135deg, var(--amber-400), var(--orange-500));
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08), transparent 70%);

    /* Glass/Card Effects for Light Theme */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-hover-bg: #f8fafc;

    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Light Theme Glow Overlay */
.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Custom Cursor Glow - Subtle for light theme */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.03) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: multiply;
}

/* -------------------------------------------------------------------------- */
/*                                 COMPONENTS                                 */
/* -------------------------------------------------------------------------- */

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background: var(--gradient-nura);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--card-border);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--amber-400);
    transform: translateY(-2px);
}

.btn-primary.large,
.btn-secondary.large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Glass Effect - Adapted for Light Theme */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #d97706 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -------------------------------------------------------------------------- */
/*                                   NAVBAR                                   */
/* -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--card-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/*                                    HERO                                    */
/* -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 2rem) 5% 5rem;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    z-index: 10;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-500);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-sub strong {
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.separator {
    width: 1px;
    height: 30px;
    background: var(--card-border);
}

/* Hero Visual & Mascot */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-container {
    width: 450px;
    height: 500px;
    border-radius: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
}

.mascot-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

#nuraCanvas {
    width: 300px;
    height: 300px;
    cursor: pointer;
}

/* Mood Switcher */
.mood-switcher {
    position: absolute;
    top: 1.5rem;
    display: flex;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    padding: 0.25rem;
    border-radius: 9999px;
    border: 1px solid var(--card-border);
}

.mood-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.mood-btn:hover,
.mood-btn.active {
    background: var(--bg-primary);
}

/* Speech Bubble */
.speech-bubble {
    background: var(--text-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    position: absolute;
    bottom: 3rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.speech-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--text-primary);
}

/* Orbs Animation - Subtle for light theme */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.3;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--amber-400);
    top: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--blue-500);
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Responsive Hero */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-sub {
        margin: 0 auto 2.5rem;
    }

    .hero-actions,
    .stats-row {
        justify-content: center;
    }

    .mascot-container {
        width: 100%;
        max-width: 400px;
    }
}

/* -------------------------------------------------------------------------- */
/*                                  FEATURES                                  */
/* -------------------------------------------------------------------------- */
.features-section {
    padding: 6rem 5%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
}

@media (min-width: 968px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 280px);
    }

    .span-2 {
        grid-column: span 2;
    }

    .span-row-2 {
        grid-row: span 2;
    }
}

.feature-card {
    padding: 2rem;
    border-radius: 2rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    background: var(--card-hover-bg);
    border-color: var(--amber-400);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.gradient-amber {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.15));
    color: #d97706;
}

.gradient-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(21, 128, 61, 0.15));
    color: #16a34a;
}

.gradient-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(185, 28, 28, 0.15));
    color: #dc2626;
}

.gradient-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.15));
    color: #2563eb;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 90%;
    z-index: 2;
}

/* Card Visuals */
.card-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.feature-card:hover .card-visual {
    opacity: 0.6;
}

/* Nura Preview Visual */
.nura-preview {
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
}

.mini-nura {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--card-border);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.feature-card:hover .mini-nura {
    transform: translateY(0);
}

.mini-nura.happy {
    animation: float 3s infinite;
}

.mini-nura.angry {
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

/* Ladder Visual */
.ladder-visual {
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    width: 60px;
    height: 12px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    border: 1px solid var(--card-border);
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.feature-card:hover .step {
    transform: translateX(0);
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--green-500);
}

.step:nth-child(1) {
    width: 40px;
    transition-delay: 0.1s;
}

.step:nth-child(2) {
    width: 50px;
    transition-delay: 0.2s;
}

.step:nth-child(3) {
    width: 60px;
    transition-delay: 0.3s;
}

.step:nth-child(4) {
    width: 70px;
    transition-delay: 0.4s;
    background: var(--green-500) !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* -------------------------------------------------------------------------- */
/*                                   ROADMAP                                  */
/* -------------------------------------------------------------------------- */
.roadmap-section {
    padding: 4rem 5%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.roadmap-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--card-border);
    border-radius: 4px;
}

.roadmap-item {
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}

.roadmap-content {
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    width: 45%;
    position: relative;
    transition: all 0.3s;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

.roadmap-content:hover {
    transform: translateY(-5px);
    background: var(--card-hover-bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.roadmap-item.left {
    justify-content: flex-start;
}

.roadmap-item.right {
    justify-content: flex-end;
}

.roadmap-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--amber-500);
    border: 4px solid var(--bg-secondary);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.roadmap-item.left .roadmap-content::after {
    right: calc(-11% - 13px);
}

.roadmap-item.right .roadmap-content::after {
    left: calc(-11% - 13px);
}

.roadmap-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--amber-600);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roadmap-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.roadmap-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.roadmap-item.center {
    justify-content: center;
    margin-top: 4rem;
}

.roadmap-item.center .roadmap-content {
    width: 60%;
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), var(--bg-primary));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.roadmap-item.center .roadmap-content::after {
    display: none;
}

.roadmap-item.center .roadmap-date {
    color: var(--green-500);
}

@media (max-width: 768px) {
    .roadmap-line {
        left: 20px;
    }

    .roadmap-item {
        justify-content: flex-start;
        padding-left: 50px;
    }

    .roadmap-content {
        width: 100%;
    }

    .roadmap-item.left .roadmap-content::after,
    .roadmap-item.right .roadmap-content::after {
        left: -38px;
        right: auto;
    }

    .roadmap-item.center .roadmap-content {
        width: 100%;
    }
}

/* -------------------------------------------------------------------------- */
/*                                    CTA                                     */
/* -------------------------------------------------------------------------- */
.cta-section {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
}

.cta-content {
    max-width: 900px;
    width: 100%;
    padding: 4rem;
    border-radius: 2rem;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--card-border);
    background: var(--bg-primary);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 180px;
}

.store-btn:hover:not(.disabled) {
    background: var(--bg-tertiary);
    border-color: var(--amber-400);
    transform: translateY(-2px);
}

.store-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-tertiary);
}

.store-icon {
    font-size: 1.5rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text small {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.store-text span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */
footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--card-border);
    background: var(--bg-primary);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links,
.socials {
    display: flex;
    gap: 1.5rem;
}

.footer-links a,
.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover,
.social-link:hover {
    color: var(--amber-600);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* -------------------------------------------------------------------------- */
/*                                    BLOG                                    */
/* -------------------------------------------------------------------------- */
.blog-header {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.post-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--amber-400);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.post-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-date {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 10px;
}

.post-title {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.post-excerpt {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    color: var(--amber-600);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--orange-500);
}

/* -------------------------------------------------------------------------- */
/*                               BLOG POST PAGE                               */
/* -------------------------------------------------------------------------- */

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 20px;
    color: var(--text-tertiary);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--amber-600);
}

.breadcrumbs span {
    color: var(--text-secondary);
    margin-left: 5px;
}

/* Article Container */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 120px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 20px;
}

.article-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-primary);
}

.article-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 40px;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.author-box img,
.author-box > div:first-child {
    flex-shrink: 0;
}

/* Typography for Article Content */
.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-body h2 {
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}

.article-body h3 {
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-secondary);
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 4px solid var(--green-500);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-secondary);
    background: rgba(34, 197, 94, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.article-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.article-body a {
    color: var(--amber-600);
    text-decoration: underline;
}

.article-body a:hover {
    color: var(--orange-500);
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-body code {
    background: var(--bg-tertiary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--text-primary);
}

.article-body pre {
    background: var(--bg-tertiary);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.article-body pre code {
    background: none;
    padding: 0;
}

/* Pillar Content */
.pillar-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.pillar-content h2 {
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.pillar-content p {
    margin-bottom: 20px;
}

.pillar-hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.section-label {
    text-align: center;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 60px;
}

/* 404 Error Page */
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.error-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 24px;
    background: var(--green-500);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.error-links a:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}