/* Root Variables */
:root {
    --primary-color: #007acc;
    --primary-dark: #005a9e;
    --secondary-color: #68217a;
    --accent-color: #f9826c;
    --text-dark: #1e1e1e;
    --text-light: #ffffff;
    --text-gray: #6e6e6e;
    --bg-light: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-dark: #1e1e1e;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bg-gradient: radial-gradient(circle at top, rgba(102, 126, 234, 0.28) 0%, rgba(118, 75, 162, 0.12) 25%, rgba(15, 23, 42, 0.92) 100%), #0b1220;
    --glass-surface: rgba(15, 23, 42, 0.58);
    --glass-surface-alt: rgba(15, 23, 42, 0.42);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-highlight: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 24px 60px rgba(8, 15, 35, 0.45);
    --glass-blur: saturate(140%) blur(18px);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    background: var(--bg-gradient);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)) var(--glass-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.glass-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.22), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 28px 60px rgba(8, 15, 35, 0.6);
}

.glass-card:hover::after {
    opacity: 1;
}

.glass-section {
    position: relative;
    padding: 100px 0;
}

.glass-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.18), rgba(118, 75, 162, 0.12), rgba(15, 23, 42, 0.9));
    opacity: 0.65;
}

.glass-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"><path d="M200 0L0 200"/><path d="M0 0L200 200"/></g></svg>');
    opacity: 0.2;
    mix-blend-mode: screen;
}

.glass-section > * {
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: rgba(10, 16, 28, 0.72);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 18px 35px rgba(8, 15, 35, 0.45);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 1);
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.nav-links a.active {
    color: rgba(255, 255, 255, 1);
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.github-link {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.24));
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 0.55rem 1.15rem !important;
    border-radius: 10px;
    border-bottom: none !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.github-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 35px rgba(8, 15, 35, 0.45);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.85);
    margin: 3px 0;
    transition: var(--transition);
}

a {
    color: rgba(184, 211, 255, 0.92);
    transition: color 0.2s ease;
}

a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.95);
}

.hero::before {
    content: '';
    position: absolute;
    inset: -15% -10% auto -10%;
    height: 120%;
    background: radial-gradient(circle at top, rgba(102, 126, 234, 0.55) 0%, rgba(118, 75, 162, 0.3) 45%, rgba(11, 18, 32, 0.05) 80%);
    filter: blur(35px);
    opacity: 0.85;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="140" height="140" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="rgba(255,255,255,0.09)" stroke-width="1"><path d="M0 70h140M70 0v140"/><circle cx="70" cy="70" r="60"/></g></svg>');
    opacity: 0.35;
    mix-blend-mode: screen;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 940px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
}

/* Remove hero panel decorative elements */

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.4rem;
    line-height: 1.2;
    text-shadow: 0 20px 40px rgba(8, 15, 35, 0.35);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 2.75rem;
    opacity: 0.92;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 35px rgba(8, 15, 35, 0.35);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.btn svg {
    filter: drop-shadow(0 4px 8px rgba(8, 15, 35, 0.4));
}

.btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(220, 235, 255, 0.85) 100%);
    color: #0f172a;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 28px 45px rgba(8, 15, 35, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.22));
    color: rgba(255, 255, 255, 0.92);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 28px 45px rgba(8, 15, 35, 0.45);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.ide-compatibility {
    text-align: center;
    margin-top: 4rem;
    padding: 2.75rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.compatibility-label {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ide-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.75rem 2rem;
    align-items: stretch;
}

.ide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ide-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 55%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.ide-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.ide-item:hover::after {
    opacity: 1;
}

.ide-logo-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 6px rgba(15, 23, 42, 0.1);
    transition: var(--transition);
}

.ide-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(0.25);
    transition: var(--transition);
}

.ide-item:hover .ide-logo-wrapper {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 1);
}

.ide-item:hover .ide-logo {
    filter: grayscale(0);
    transform: scale(1.08);
}

.ide-name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Extension Stats - Side by Side */
.extension-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.15));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: 0 15px 35px rgba(8, 15, 35, 0.35);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.extension-stats .stat-item {
    text-align: center;
    min-width: 100px;
}

.extension-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 6px 15px rgba(8, 15, 35, 0.4);
}

.extension-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
}

.features-header-panel {
    max-width: 940px;
    margin: 0 auto 4rem;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    border-radius: 20px;
}

.features-header-panel::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249, 130, 108, 0.3), transparent 70%);
    filter: blur(25px);
    opacity: 0.8;
    z-index: -1;
}

.features-header-panel::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.28), transparent 70%);
    filter: blur(30px);
    opacity: 0.7;
    z-index: -1;
}

.features-header-panel .section-title,
.features-header-panel .section-subtitle {
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 22px 45px rgba(8, 15, 35, 0.45);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    letter-spacing: 0.02em;
}

.features-header-panel .section-subtitle {
    margin-bottom: 3rem;
}

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

.feature-card {
    padding: 2.75rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
    transition: var(--transition);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.28), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 34px 70px rgba(8, 15, 35, 0.6);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 12px 18px rgba(8, 15, 35, 0.45));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

/* Screenshots Section */
.screenshots {
    position: relative;
}

.screenshot-showcase {
    margin-top: 4rem;
}

.screenshot-item {
    margin-bottom: 5rem;
    text-align: center;
    padding: 3rem 3.25rem;
    border-radius: 26px;
}

.screenshot-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.screenshot-img {
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 30px 70px rgba(8, 15, 35, 0.6);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.screenshot-img:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 80px rgba(8, 15, 35, 0.65);
}

.screenshot-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.screenshot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.screenshot-feature {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 22px;
}

.screenshot-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.88);
}

.screenshot-small {
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(8, 15, 35, 0.45);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.screenshot-small:hover {
    transform: scale(1.05);
}

.screenshot-feature p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
}

/* Installation Section */
.installation {
    position: relative;
}

.installation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.install-method {
    padding: 3.2rem 2.8rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
    box-shadow: 0 30px 70px rgba(8, 15, 35, 0.5);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: relative;
    overflow: hidden;
}

.install-method h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.install-description {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.install-method ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.install-method li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.install-method code {
    background-color: rgba(255, 255, 255, 0.18);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e0d7ff;
}

.quick-start {
    margin-top: 5rem;
    padding: 4.2rem 3.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.18));
    box-shadow: 0 38px 85px rgba(8, 15, 35, 0.55);
}

.quick-start h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
}

.quick-start-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.quick-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    box-shadow: 0 26px 60px rgba(8, 15, 35, 0.45);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.92);
    color: #1c2c5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.step-content p {
    opacity: 0.85;
}

.step-content code {
    background-color: rgba(255, 255, 255, 0.24);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

/* Use Cases Section */
.use-cases {
    position: relative;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.use-case {
    padding: 2.75rem 2.25rem;
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02));
    box-shadow: 0 26px 60px rgba(8, 15, 35, 0.45);
    transition: var(--transition);
}

.use-case:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 34px 70px rgba(8, 15, 35, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.use-case-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 14px 18px rgba(8, 15, 35, 0.5));
}

.use-case h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.use-case p {
    color: rgba(255, 255, 255, 0.68);
}

/* CTA Section */
.cta {
    position: relative;
    text-align: center;
}

.cta-panel {
    max-width: 780px;
    margin: 0 auto;
    padding: 4.5rem 3.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(150deg, rgba(102, 126, 234, 0.32), rgba(118, 75, 162, 0.22));
    box-shadow: 0 42px 95px rgba(8, 15, 35, 0.6);
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 24px 55px rgba(8, 15, 35, 0.55);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: rgba(6, 10, 22, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: rgba(255, 255, 255, 0.92);
    padding: 4.5rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 1.5rem;
}

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

.footer-links a,
.footer-section a {
    color: rgba(184, 211, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-section a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .logo-text {
        display: inline;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 16, 28, 0.9);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 20px 40px rgba(8, 15, 35, 0.45);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-panel {
        padding: 2.75rem 2.2rem;
    }

    .ide-compatibility {
        padding: 2rem 1.25rem;
    }

    .ide-logos {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1.25rem 1.5rem;
    }

    .ide-item {
        padding: 1.1rem 0.85rem;
        gap: 0.85rem;
    }

    .ide-logo-wrapper {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .ide-logo {
        width: 34px;
        height: 34px;
    }

    .ide-name {
        font-size: 0.85rem;
        letter-spacing: 0.04em;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .extension-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .extension-stats .stat-item {
        min-width: auto;
    }

    .extension-stats .stat-number {
        font-size: 1.8rem;
    }

    .features,
    .screenshots,
    .installation,
    .use-cases,
    .cta {
        padding: 60px 0;
    }

    .feature-card {
        padding: 2.25rem 2rem;
    }

    .screenshot-item {
        padding: 2.5rem 2rem;
    }

    .screenshot-feature {
        padding: 2rem 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .installation-methods {
        grid-template-columns: 1fr;
    }

    .quick-start {
        padding: 2rem;
    }

    .quick-start-steps {
        flex-direction: column;
    }

    .quick-step {
        padding: 2rem 1.75rem;
    }

    .screenshot-features {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .cta-panel {
        padding: 3.2rem 2.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-panel {
        padding: 2.2rem 1.6rem;
    }

    .cta-panel {
        padding: 2.6rem 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}
