:root {
    --primary: #4CB4A5;
        /* Mint Green */
        --primary-light: #77CFC3;
        --primary-dark: #328A7D;
        --secondary: #58BCAE;
        /* Teal */
    --bg-dark: #0F172A; /* Deep Slate */
    --bg-darker: #0B1120;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background Blobs */
.blob-bg {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.blob-bg::after {
    content: '';
    position: absolute;
    top: 400px;
    left: -800px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(80px);
}

.blob-bg-secondary {
    top: 20%;
    left: -300px;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.navbar {
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
        align-items: center;
        gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links>a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links>a:hover,
.nav-links>a.active {
    color: var(--text-main);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
}

.lang-switcher a {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-switcher a:hover {
    color: var(--text-main);
}

.lang-switcher a.active {
    background: var(--primary);
    color: var(--bg-darker);
}
/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding-top: 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Buttons */
.cta-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.75rem;
}

.btn-primary.slack-btn {
    background-color: var(--text-main);
    color: var(--bg-darker);
}

.btn-primary.slack-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Slack Mockup */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.slack-mockup {
    width: 100%;
    max-width: 450px;
    padding: 0;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.slack-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-circles {
    display: flex;
    gap: 0.3rem;
}

.mockup-circles span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ED6A5E;
}
.mockup-circles span:nth-child(2) { background-color: #F4BF4F; }
.mockup-circles span:nth-child(3) { background-color: #61C554; }

.mockup-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-body {
    padding: 1.5rem;
    background: var(--bg-darker);
}

.message {
    display: flex;
    gap: 1rem;
}

.app-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--bg-darker);
}

.message-header strong { margin-right: 0.5rem; }
.message-header .time { font-size: 0.8rem; color: var(--text-muted); }
.message-text { margin-top: 0.5rem; background: var(--glass-bg); padding: 1rem; border-radius: 0 12px 12px 12px; font-size: 0.95rem; }

/* Features Section */
.features-section {
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    transition: transform 0.3s ease, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Document / Internal Pages (Privacy, Support) */
.page-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-section {
    flex: 1;
    padding: 4rem 2rem;
    max-width: 900px;
}

.document-card {
    padding: 3rem 4rem;
}

.document-card h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-light);
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.doc-section {
    margin-bottom: 2.5rem;
}

.doc-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.doc-section p, .doc-section ul {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.doc-section ul {
    padding-left: 1.5rem;
}

.doc-section li {
    margin-bottom: 0.5rem;
}

.doc-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.doc-section a:hover {
    text-decoration: underline;
}

/* Form Container */
.support-form-container {
    margin-top: 2rem;
    text-align: center;
}

.iframe-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass-bg);
}

.highlight-alert {
    background: rgba(76, 180, 165, 0.1);
        border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.highlight-alert strong {
    color: var(--primary);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-title { font-size: 3rem; }
    
    .cta-container { justify-content: center; }
    
    .hero-subtitle { margin: 0 auto 2.5rem auto; }
    
    .document-card { padding: 2rem; }
    
    .nav-links { display: none; } /* Could add hamburger menu for mobile */
}
