/* Berry Mix Theme (vue-019) */
:root {
    --berry-dark: #1A0020;
    --raspberry: #E31C79;
    --blueberry: #4338CA;
    --blackberry: #6B21A8;
    --strawberry: #EF4444;
    --berry-cream: #FDF2F8;
    --berry-dark-alt: #120018;
    --berry-mid: #2D0040;
    --raspberry-light: #F472B6;
    --blueberry-light: #818CF8;
    --blackberry-light: #A78BFA;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: var(--berry-dark);
    color: var(--berry-cream);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--berry-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--raspberry), var(--blueberry)); border-radius: 4px; }

/* Common */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--raspberry), var(--blueberry), var(--blackberry));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: rgba(253, 242, 248, 0.7);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Animations */
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-10px, -40px) scale(0.95); }
    75% { transform: translate(-30px, 10px) scale(1.02); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 30px) rotate(120deg); }
    66% { transform: translate(20px, -10px) rotate(240deg); }
}

@keyframes drip {
    0% { transform: translateY(-10px) scaleY(0.8); opacity: 0; }
    50% { transform: translateY(20px) scaleY(1.2); opacity: 1; }
    100% { transform: translateY(50px) scaleY(0.6); opacity: 0; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(227, 28, 121, 0.3); }
    50% { box-shadow: 0 0 40px rgba(227, 28, 121, 0.6), 0 0 60px rgba(67, 56, 202, 0.3); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes splash {
    0% { transform: scale(0) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.5) rotate(180deg); opacity: 0.6; }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 0, 32, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--raspberry), var(--blueberry), var(--blackberry), var(--raspberry)) 1;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(26, 0, 32, 0.98);
    box-shadow: 0 4px 30px rgba(227, 28, 121, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--raspberry), var(--blackberry));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: 900;
    animation: pulseGlow 3s ease-in-out infinite;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--raspberry), var(--raspberry-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(253, 242, 248, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--raspberry), var(--blueberry));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--berry-cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--raspberry), var(--blackberry));
    color: white !important;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 28, 121, 0.4);
}

.nav-cta::after { display: none !important; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--raspberry);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 0, 32, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-bottom: 2px solid var(--raspberry);
}

.mobile-menu.active { display: block; }

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: var(--berry-cream);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(227, 28, 121, 0.1);
    color: var(--raspberry);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 1.5rem 4rem;
    background: linear-gradient(135deg, var(--berry-dark) 0%, #2D0040 25%, #1E0535 50%, #150030 75%, var(--berry-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(227, 28, 121, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(67, 56, 202, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(107, 33, 168, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-blob-1 { width: 400px; height: 400px; background: linear-gradient(135deg, var(--raspberry), var(--blueberry)); top: 10%; left: -5%; animation: blobFloat 8s ease-in-out infinite; }
.hero-blob-2 { width: 350px; height: 350px; background: linear-gradient(135deg, var(--blueberry), var(--blackberry)); top: 60%; right: -5%; animation: blobFloat2 10s ease-in-out infinite; }
.hero-blob-3 { width: 250px; height: 250px; background: linear-gradient(135deg, var(--blackberry), var(--strawberry)); bottom: 20%; left: 20%; animation: blobFloat 12s ease-in-out infinite reverse; }
.hero-blob-4 { width: 200px; height: 200px; background: linear-gradient(135deg, var(--strawberry), var(--raspberry)); top: 20%; right: 25%; animation: blobFloat2 9s ease-in-out infinite; }

.hero-content { text-align: center; position: relative; z-index: 2; max-width: 800px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(227, 28, 121, 0.15);
    border: 1px solid rgba(227, 28, 121, 0.3);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--raspberry-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--raspberry);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--raspberry), var(--blueberry), var(--blackberry), var(--strawberry));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(253, 242, 248, 0.75);
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--raspberry), var(--blackberry));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(227, 28, 121, 0.4);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--berry-cream);
    border: 2px solid rgba(253, 242, 248, 0.3);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--raspberry);
    background: rgba(227, 28, 121, 0.1);
    transform: translateY(-3px);
}

/* Drip decorations */
.drip-container {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.drip {
    position: absolute;
    width: 4px;
    height: 20px;
    border-radius: 0 0 4px 4px;
    animation: drip 3s ease-in-out infinite;
}

.drip:nth-child(1) { left: 10%; background: var(--raspberry); animation-delay: 0s; }
.drip:nth-child(2) { left: 25%; background: var(--blueberry); animation-delay: 0.5s; }
.drip:nth-child(3) { left: 40%; background: var(--blackberry); animation-delay: 1s; }
.drip:nth-child(4) { left: 55%; background: var(--strawberry); animation-delay: 1.5s; }
.drip:nth-child(5) { left: 70%; background: var(--raspberry); animation-delay: 2s; }
.drip:nth-child(6) { left: 85%; background: var(--blueberry); animation-delay: 2.5s; }
.drip:nth-child(7) { left: 95%; background: var(--blackberry); animation-delay: 0.3s; }

.splash {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.splash-1 { width: 12px; height: 12px; background: var(--raspberry); top: 30%; left: 15%; animation: splash 4s ease-in-out infinite; }
.splash-2 { width: 8px; height: 8px; background: var(--blueberry); top: 45%; right: 20%; animation: splash 5s ease-in-out infinite 1s; }
.splash-3 { width: 10px; height: 10px; background: var(--blackberry); bottom: 35%; left: 30%; animation: splash 6s ease-in-out infinite 2s; }

/* Features */
.features {
    padding: 6rem 1.5rem;
    position: relative;
    background: linear-gradient(180deg, var(--berry-dark) 0%, var(--berry-dark-alt) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature-card:hover { transform: translateY(-8px); }

.feature-card-1 { background: linear-gradient(135deg, rgba(227, 28, 121, 0.2), rgba(107, 33, 168, 0.2)); border: 1px solid rgba(227, 28, 121, 0.2); }
.feature-card-1:hover { box-shadow: 0 20px 50px rgba(227, 28, 121, 0.2); border-color: rgba(227, 28, 121, 0.4); }

.feature-card-2 { background: linear-gradient(135deg, rgba(67, 56, 202, 0.2), rgba(227, 28, 121, 0.2)); border: 1px solid rgba(67, 56, 202, 0.2); }
.feature-card-2:hover { box-shadow: 0 20px 50px rgba(67, 56, 202, 0.2); border-color: rgba(67, 56, 202, 0.4); }

.feature-card-3 { background: linear-gradient(135deg, rgba(107, 33, 168, 0.2), rgba(67, 56, 202, 0.2)); border: 1px solid rgba(107, 33, 168, 0.2); }
.feature-card-3:hover { box-shadow: 0 20px 50px rgba(107, 33, 168, 0.2); border-color: rgba(107, 33, 168, 0.4); }

.feature-card-4 { background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(227, 28, 121, 0.2)); border: 1px solid rgba(239, 68, 68, 0.2); }
.feature-card-4:hover { box-shadow: 0 20px 50px rgba(239, 68, 68, 0.2); border-color: rgba(239, 68, 68, 0.4); }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.feature-card-1 .feature-icon { background: linear-gradient(135deg, var(--raspberry), var(--blackberry)); }
.feature-card-2 .feature-icon { background: linear-gradient(135deg, var(--blueberry), var(--raspberry)); }
.feature-card-3 .feature-icon { background: linear-gradient(135deg, var(--blackberry), var(--blueberry)); }
.feature-card-4 .feature-icon { background: linear-gradient(135deg, var(--strawberry), var(--raspberry)); }

.feature-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--berry-cream); }
.feature-desc { font-size: 0.95rem; color: rgba(253, 242, 248, 0.7); line-height: 1.7; font-weight: 300; }

/* Board Widgets */
.boards {
    padding: 6rem 1.5rem;
    position: relative;
    background: var(--berry-dark-alt);
}

.boards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.board-card {
    background: rgba(45, 0, 64, 0.5);
    border: 1px solid rgba(253, 242, 248, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.board-card:hover {
    transform: translateY(-4px);
    border-color: rgba(253, 242, 248, 0.15);
}

.board-header {
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.board-card:nth-child(1) .board-header { background: linear-gradient(135deg, rgba(227, 28, 121, 0.15), rgba(227, 28, 121, 0.05)); border-bottom: 1px solid rgba(227, 28, 121, 0.2); }
.board-card:nth-child(2) .board-header { background: linear-gradient(135deg, rgba(67, 56, 202, 0.15), rgba(67, 56, 202, 0.05)); border-bottom: 1px solid rgba(67, 56, 202, 0.2); }
.board-card:nth-child(3) .board-header { background: linear-gradient(135deg, rgba(107, 33, 168, 0.15), rgba(107, 33, 168, 0.05)); border-bottom: 1px solid rgba(107, 33, 168, 0.2); }

.board-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.board-card:nth-child(1) .board-title { color: var(--raspberry-light); }
.board-card:nth-child(2) .board-title { color: var(--blueberry-light); }
.board-card:nth-child(3) .board-title { color: var(--blackberry-light); }

.board-more {
    font-size: 0.85rem;
    color: rgba(253, 242, 248, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.board-more:hover { color: var(--berry-cream); }

.board-list { padding: 1rem 1.5rem; list-style: none; }

.board-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(253, 242, 248, 0.05);
    transition: all 0.3s ease;
}

.board-item:last-child { border-bottom: none; }
.board-item:hover { padding-left: 0.5rem; }

.board-item-title {
    font-size: 0.9rem;
    color: rgba(253, 242, 248, 0.85);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.board-item-title:hover { color: var(--raspberry-light); }

.board-item-date {
    font-size: 0.8rem;
    color: rgba(253, 242, 248, 0.4);
    font-weight: 300;
}

/* Stats */
.stats {
    padding: 6rem 1.5rem;
    position: relative;
    background: var(--berry-dark);
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 28, 121, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-blob-1 { width: 300px; height: 300px; background: linear-gradient(135deg, var(--raspberry), var(--blueberry)); top: -10%; right: -5%; animation: blobFloat 10s ease-in-out infinite; opacity: 0.2; }
.stats-blob-2 { width: 250px; height: 250px; background: linear-gradient(135deg, var(--blackberry), var(--strawberry)); bottom: -10%; left: -5%; animation: blobFloat2 12s ease-in-out infinite; opacity: 0.2; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(45, 0, 64, 0.3);
    border: 1px solid rgba(253, 242, 248, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 28, 121, 0.3);
    box-shadow: 0 10px 30px rgba(227, 28, 121, 0.1);
}

.stat-icon { font-size: 1.5rem; margin-bottom: 1rem; display: block; }

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--raspberry), var(--blueberry));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(253, 242, 248, 0.6);
    font-weight: 400;
}

/* CTA */
.cta {
    padding: 6rem 1.5rem;
    position: relative;
    background: linear-gradient(135deg, var(--blueberry), var(--raspberry));
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-blob-1 { width: 200px; height: 200px; background: rgba(255, 255, 255, 0.1); top: 10%; left: 5%; animation: blobFloat 8s ease-in-out infinite; opacity: 1; filter: blur(40px); }
.cta-blob-2 { width: 150px; height: 150px; background: rgba(255, 255, 255, 0.08); bottom: 10%; right: 10%; animation: blobFloat2 10s ease-in-out infinite; opacity: 1; filter: blur(30px); }

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--berry-dark);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-btn {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--raspberry), var(--blackberry));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(227, 28, 121, 0.4);
}

/* Footer */
.site-footer {
    padding: 4rem 1.5rem 2rem;
    background: #0D0012;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--raspberry), var(--blueberry), var(--blackberry), var(--strawberry), var(--raspberry));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(253, 242, 248, 0.5);
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--berry-cream);
    margin-bottom: 1.2rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
    text-decoration: none;
    color: rgba(253, 242, 248, 0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--raspberry-light);
    padding-left: 0.3rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 242, 248, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(253, 242, 248, 0.4);
    font-weight: 300;
}

.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(253, 242, 248, 0.05);
    color: rgba(253, 242, 248, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, var(--raspberry), var(--blackberry));
    color: white;
    transform: translateY(-3px);
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 359px) {
    html { font-size: 13px; }
}

@media (min-width: 360px) and (max-width: 767px) {
    html { font-size: 14px; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .hero-title { font-size: clamp(2rem, 6vw, 3rem); }
    .hero-buttons { flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr; }
    .boards-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    html { font-size: 15px; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    html { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1280px) and (max-width: 1919px) {
    html { font-size: 16px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    html { font-size: 17px; }
}

@media (min-width: 2560px) and (max-width: 3839px) {
    html { font-size: 19px; }
}

@media (min-width: 3840px) {
    html { font-size: 22px; }
}
