
:root {
    --smaragd: #00D4AA;
    --smaragd-light: #00F5C4;
    --smaragd-dark: #00A88A;
    --smaragd-glow: rgba(0, 212, 170, 0.3);
    --smaragd-subtle: rgba(0, 212, 170, 0.08);
    --smaragd-border: rgba(0, 212, 170, 0.15);

    --bg-primary: #050a0e;
    --bg-secondary: #080d12;
    --bg-card: rgba(12, 20, 28, 0.7);
    --bg-card-hover: rgba(16, 28, 38, 0.85);

    --text-primary: #e8f4f0;
    --text-secondary: #7a9e96;
    --text-muted: #4a6b62;

    --glass-bg: rgba(8, 18, 24, 0.6);
    --glass-border: rgba(0, 212, 170, 0.12);
    --glass-blur: 20px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--smaragd-glow);
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--smaragd-dark) var(--bg-primary);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--smaragd-dark);
    border-radius: 3px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}


.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--smaragd);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 400px;
    height: 400px;
    background: #0066FF;
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.bg-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--smaragd-dark);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(40px, 30px) scale(1.02);
    }
}


.floating-svgs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-svg {
    position: absolute;
    opacity: 0.06;
    animation: floatSvg linear infinite;
}

.floating-svg svg {
    width: 100%;
    height: 100%;
}

@keyframes floatSvg {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.06;
    }

    90% {
        opacity: 0.06;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    transition: all 0.4s ease;
}

.header.scrolled {
    padding: 0.5rem 2rem;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    margin-top: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.header.scrolled .header-inner {
    margin-top: 0;
    border-radius: var(--radius-lg);
    background: rgba(8, 18, 24, 0.85);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--smaragd), var(--smaragd-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--smaragd-glow);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {

    0%,
    100% {
        transform: translateX(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) rotate(45deg);
    }
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--smaragd);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--smaragd);
    background: var(--smaragd-subtle);
}

.header-cta {
    background: linear-gradient(135deg, var(--smaragd), var(--smaragd-dark));
    color: var(--bg-primary);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--smaragd-glow);
    font-family: inherit;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--smaragd-glow);
}


.main {
    position: relative;
    z-index: 2;
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--smaragd-subtle);
    border: 1px solid var(--smaragd-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--smaragd);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--smaragd);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--smaragd-light), var(--smaragd), #00FFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--smaragd), var(--smaragd-dark));
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px var(--smaragd-glow);
    font-family: inherit;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--smaragd-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--smaragd);
    color: var(--smaragd);
    background: var(--smaragd-subtle);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--smaragd);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.cdn-section {
    padding: 4rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.9rem;
    background: var(--smaragd-subtle);
    border: 1px solid var(--smaragd-border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--smaragd);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}


.filter-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-wrapper {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    border-color: var(--smaragd);
    box-shadow: 0 0 0 3px var(--smaragd-subtle);
    background: var(--bg-card-hover);
}

.filter-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.filter-tag:hover {
    border-color: var(--smaragd-border);
    color: var(--smaragd);
}

.filter-tag.active {
    background: var(--smaragd);
    border-color: var(--smaragd);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--smaragd-glow);
}


.cdn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1rem;
}

.cdn-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.5s ease both;
}

.cdn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--smaragd), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cdn-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--smaragd-border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md), 0 0 30px rgba(0, 212, 170, 0.05);
}

.cdn-card:hover::before {
    opacity: 1;
}

.cdn-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cdn-card-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cdn-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
}

.cdn-icon.font {
    background: rgba(255, 99, 71, 0.15);
}

.cdn-icon.css {
    background: rgba(38, 77, 228, 0.15);
}

.cdn-icon.js {
    background: rgba(240, 219, 79, 0.15);
}

.cdn-icon.icon {
    background: rgba(0, 212, 170, 0.15);
}

.cdn-icon.ui {
    background: rgba(156, 39, 176, 0.15);
}

.cdn-icon.animation {
    background: rgba(255, 152, 0, 0.15);
}

.cdn-icon.util {
    background: rgba(33, 150, 243, 0.15);
}

.cdn-icon.chart {
    background: rgba(244, 67, 54, 0.15);
}

.cdn-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.cdn-card-version {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.cdn-card-tag {
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-font {
    background: rgba(255, 99, 71, 0.15);
    color: #FF6347;
}

.tag-css {
    background: rgba(38, 77, 228, 0.15);
    color: #264de4;
}

.tag-js {
    background: rgba(240, 219, 79, 0.15);
    color: #F0DB4F;
}

.tag-icon {
    background: rgba(0, 212, 170, 0.15);
    color: var(--smaragd);
}

.tag-ui {
    background: rgba(156, 39, 176, 0.15);
    color: #9C27B0;
}

.tag-animation {
    background: rgba(255, 152, 0, 0.15);
    color: #FF9800;
}

.tag-util {
    background: rgba(33, 150, 243, 0.15);
    color: #2196F3;
}

.tag-chart {
    background: rgba(244, 67, 54, 0.15);
    color: #F44336;
}

.cdn-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cdn-link-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.75rem;
    overflow: hidden;
}

.cdn-link-text {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cdn-copy-btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--smaragd-subtle);
    border: 1px solid var(--smaragd-border);
    border-radius: var(--radius-sm);
    color: var(--smaragd);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cdn-copy-btn:hover {
    background: var(--smaragd);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--smaragd-glow);
}

.cdn-copy-btn.copied {
    background: var(--smaragd);
    color: var(--bg-primary);
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.no-results {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.no-results h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.no-results p {
    color: var(--text-muted);
    font-size: 0.9rem;
}


.footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer a {
    color: var(--smaragd);
    text-decoration: none;
}


.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--smaragd-border);
    border-radius: var(--radius-md);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    backdrop-filter: blur(20px);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--smaragd);
}


@media (max-width: 768px) {
    .header-inner {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .cdn-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-direction: column;
    }

    .search-wrapper {
        min-width: 100%;
    }

    .filter-tags {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .filter-tag {
        flex-shrink: 0;
    }
    
    .header-cta{
        display: none;
    }
    
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


.about-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--smaragd-glow) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 212, 170, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--smaragd), var(--smaragd-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--smaragd-glow);
    animation: iconPulse 3s ease-in-out infinite;
}

.about-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--bg-primary);
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px var(--smaragd-glow); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px var(--smaragd-glow); }
}

.about-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--smaragd-light), var(--smaragd));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story {
    margin-bottom: 2.5rem;
}

.about-story p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-story strong {
    color: var(--smaragd);
    font-weight: 700;
}


.about-mission {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--smaragd-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.mission-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--smaragd-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--smaragd);
}

.mission-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.mission-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--smaragd-border);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto  1rem;
    background: var(--smaragd-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--smaragd);
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}


.about-quote {
    background: linear-gradient(135deg, var(--smaragd-subtle), rgba(0, 212, 170, 0.03));
    border: 1px solid var(--smaragd-border);
    border-left: 3px solid var(--smaragd);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.about-quote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
}


.about-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.about-cta p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--smaragd);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--smaragd-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.about-link:hover {
    background: var(--smaragd);
    color: var(--bg-primary);
    border-color: var(--smaragd);
    box-shadow: 0 4px 15px var(--smaragd-glow);
}

.about-link svg {
    width: 16px;
    height: 16px;
}


@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-mission {
        flex-direction: column;
        text-align: center;
    }

    .mission-icon {
        margin: 0 auto;
    }
}