:root {
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.aw-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% -10%, rgba(20, 184, 106, 0.2), transparent 32%),
        radial-gradient(circle at 95% 0%, rgba(148, 163, 184, 0.18), transparent 30%),
        linear-gradient(180deg, #f7faf9 0%, #ffffff 35%, #f8fafc 100%);
}

.aw-orb {
    pointer-events: none;
    position: fixed;
    z-index: -1;
    border-radius: 9999px;
    filter: blur(36px);
    opacity: 0.5;
}

.aw-orb-top {
    top: -120px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.35);
}

.aw-orb-bottom {
    bottom: -160px;
    left: -100px;
    width: 360px;
    height: 360px;
    background: rgba(14, 165, 233, 0.22);
}

.aw-panel {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 45px -28px rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(5px);
}

.aw-hero {
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 1.35rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background:
        linear-gradient(120deg, rgba(20, 184, 106, 0.13), rgba(255, 255, 255, 0.93) 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 249, 0.85));
    box-shadow: 0 20px 40px -30px rgba(16, 185, 129, 0.6);
}

.aw-post-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.aw-post-card:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 184, 106, 0.35);
    box-shadow: 0 24px 45px -30px rgba(16, 185, 129, 0.45);
}

.aw-nav-link {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.9rem;
    color: #0f172a;
    transition: all 0.2s ease;
}

.aw-nav-link:hover {
    border-color: rgba(20, 184, 106, 0.38);
    color: #0e7d49;
    background: #effef7;
}

.aw-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: #eafff3;
    padding: 0.34rem 0.72rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0e7d49;
    transition: all 0.2s ease;
}

.aw-chip:hover {
    background: #d8fbe8;
}

.aw-chip-outline {
    background: #ffffff;
    border-color: #d1d5db;
    color: #334155;
}

.aw-chip-outline:hover {
    border-color: rgba(20, 184, 106, 0.35);
    color: #0e7d49;
    background: #f8fffb;
}

.aw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    border: 1px solid transparent;
    padding: 0.58rem 0.98rem;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.aw-btn-primary {
    border-color: #0f9d5a;
    background: #14b86a;
    color: white;
}

.aw-btn-primary:hover {
    border-color: #0e7d49;
    background: #0f9d5a;
}

.aw-btn-ghost {
    border-color: #d1d5db;
    background: #fff;
    color: #0f172a;
}

.aw-btn-ghost:hover {
    border-color: rgba(20, 184, 106, 0.32);
    color: #0e7d49;
    background: #f8fffb;
}

.aw-btn-disabled {
    border-color: #e2e8f0;
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
}

.aw-article {
    line-height: 1.7;
    font-size: 1.05rem;
}

.aw-article p {
    margin-bottom: 1rem;
}
