


:root {
    --green-1: #11A556;
    --green-2: #28C77C;
    --green-3: #87D1AA;
    --text-1: #000000;
    --text-2: #383838;
    --text-3: #646464;
    --separator: #F0EDE7;
    --sparator: var(--separator);
    --bg-cream: var(--separator);

    --green: var(--green-1);
    --text-dark: var(--text-2);
    --text-black: var(--text-1);
    --text-muted: var(--text-3);
    --bg-page: #FFF8F0;
    --bg-light: #FFFFFF;
    --bg-soft: #F7F4EE;
    --bg-placeholder: #D9D9D9;
}

.green1 {
    color: var(--green-1);
}

.green2 {
    color: var(--green-2);
}

.green3 {
    color: var(--green-3);
}

.text-text1 {
    color: var(--text-1);
}

.text-text2 {
    color: var(--text-2);
}

.text-text3 {
    color: var(--text-3);
}

.bg-cream {
    background-color: var(--bg-cream);
}

.bg-separator {
    background-color: var(--separator);
}

.border-separator {
    border-color: var(--separator);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-page);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.site-container {
    width: 100%;
    max-width: 1440px;
    padding: 0 80px;
    margin: 0 auto;
}

/* Navbar */
.site-nav {
    background: var(--bg-light);
}

.site-nav .site-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text-dark);
}

.brand img {
    width: 32px;
    height: 30px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text-dark);
}

.nav-link.active {
    color: var(--green);
}

.nav-caret {
    width: 16px;
    height: 16px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-text {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.btn-primary-figma {
    background: var(--green);
    color: #FFFFFF;
    height: 51px;
    padding: 10px 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    border: none;
}

.btn-outline-figma {
    border: 1px solid var(--green);
    color: var(--green);
    height: 51px;
    padding: 10px 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
}

.btn-icon {
    width: 16px;
    height: 19px;
    transform: rotate(90deg);
}

/* Hero */
.hero {
    position: relative;
    background: var(--bg-light);
    padding: 40px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.35;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: -127px;
    bottom: -260px;
    width: 1694px;
    height: 659px;
    background: radial-gradient(ellipse at center, rgba(17, 165, 86, 0.12), rgba(17, 165, 86, 0));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 979px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-title {
    font-size: 72px;
    line-height: 92px;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: var(--text-black);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.32;
    letter-spacing: -0.04em;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-image {
    position: relative;
    z-index: 1;
    margin: 120px auto 0;
    max-width: 1204px;
    width: 100%;
    height: 396px;
    background: var(--bg-placeholder);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #9A9A9A;
    font-weight: 500;
}

/* Partner Bar */
.partner-bar {
    background: var(--green);
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 24px;
    padding: 32px 0;
}

.partner-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Shared Section Styles */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--green);
    text-transform: uppercase;
}

.section-tag .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
}

.section-title {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text-black);
}

.section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

.section-tag.center {
    display: inline-flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title.center,
.section-desc.center {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Principal */
.principal {
    background: var(--bg-light);
    padding: 80px 0;
}

.principal-grid {
    display: grid;
    grid-template-columns: 349px 1fr;
    gap: 80px;
    align-items: center;
}

.principal-photo {
    width: 349px;
    height: 391px;
    background: var(--bg-placeholder);
    border-radius: 16px;
}

.principal-content .section-title {
    margin: 12px 0 24px;
}

.principal-name {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    color: var(--green);
}

.principal-role {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
}

/* Stats */
.stats {
    background: var(--bg-soft);
    padding: 80px 0;
}

.stats .section-title {
    margin: 16px auto 12px;
    max-width: 620px;
}

.stats .section-desc {
    max-width: 620px;
    margin: 0 auto 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stats-item {
    text-align: center;
    padding: 0 24px;
}

.stats-item:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-number {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
}

.stats-label {
    font-size: 18px;
    color: var(--text-dark);
}

/* Programs */
.programs {
    background: var(--bg-light);
    padding: 80px 0;
}

.programs-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

.programs-head .section-title {
    max-width: 520px;
}

.programs-head .section-desc {
    max-width: 487px;
}

.programs-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--bg-light);
    border: 1px solid #EDEDED;
    border-radius: 16px;
    padding: 48px 32px 40px;
    text-align: center;
    height: 361px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.program-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(17, 165, 86, 0.12);
}

.program-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-black);
}

.program-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Posts */
.posts {
    background: var(--bg-light);
    padding: 80px 0 120px;
}

.post-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.post-card {
    background: var(--bg-light);
    border: 1px solid #EDEDED;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 441px;
}

.post-image {
    height: 240px;
    background: var(--bg-placeholder);
}

.post-body {
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.post-title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-black);
}

.post-excerpt {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: auto;
}

.post-more {
    margin-top: 48px;
    display: flex;
    justify-content: flex-end;
}

/* Features */
.features {
    background: var(--bg-soft);
    padding: 80px 0 120px;
}

.feature-row {
    display: grid;
    grid-template-columns: 575px 625px;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row.reverse {
    grid-template-columns: 625px 575px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-image {
    width: 100%;
    height: 375px;
    background: var(--bg-placeholder);
    border-radius: 16px;
}

.feature-content .section-title {
    margin-bottom: 24px;
}

.feature-content .section-desc {
    margin-bottom: 32px;
}

/* Footer */
.site-footer {
    position: relative;
    background: #0E1B14;
    color: #FFFFFF;
    padding: 48px 0 0;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.footer-brand {
    width: 320px;
}

.footer-brand .brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-brand img {
    width: 46px;
    height: 44px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-icons a:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.footer-menus {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
    width: 687px;
}

.footer-col h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding: 24px 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-watermark {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    text-align: center;
    font-size: 72px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .site-container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 56px;
        line-height: 70px;
    }

    .programs-grid,
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
    }

    .feature-row.reverse {
        grid-auto-flow: dense;
    }

    .feature-row.reverse .feature-image {
        order: -1;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-menus {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .site-nav .site-container {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-image {
        margin-top: 80px;
    }

    .principal-grid {
        grid-template-columns: 1fr;
    }

    .principal-photo {
        width: 100%;
        height: 320px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-item:not(:last-child) {
        border-right: none;
    }

    .stats-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .programs-grid,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .partner-list {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .footer-watermark {
        font-size: 48px;
    }
}

@media (max-width: 600px) {
    .site-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 50px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-image {
        height: 280px;
        font-size: 24px;
    }
}


.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Article */
.article-content {
    font-size: 16px;
    line-height: 1.85;
    color: #383838;
}

.article-content p {
    margin: 0 0 16px;
}

.article-content h2 {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
    color: #111111;
    margin: 28px 0 12px;
}

.article-content h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #111111;
    margin: 24px 0 10px;
}

.article-content ul,
.article-content ol {
    padding-left: 20px;
    margin: 0 0 16px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.article-content a {
    color: #11A556;
    text-decoration: underline;
}
