:root {
    --bg-color: #050508;
    --accent-primary: #00f5ff;
    --accent-secondary: #9333ea;
    --text-primary: #ffffff;
    --text-secondary: #94A3B8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-headings: 'Space Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --transition-speed: 0.3s;
    --section-padding-x: 12%;
    --section-padding-x-mobile: 5%;
    --section-padding-y: 8rem;
    --section-padding-y-mobile: 5rem;
    --content-max-width: 1250px;
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .menu-link-item {
    font-family: var(--font-headings);
}

/* Background Particles & Spline */
#particles-js,
#canvas3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#canvas3d {
    z-index: -2;
    pointer-events: none;
}

/* Hide Spline Watermark */
#canvas3d + a,
#canvas3d ~ a,
[href*="spline.design"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Custom Cursor */
.cursor-dot, 
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.15s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

.cursor-outline.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(0, 210, 255, 0.05);
    border-color: var(--accent-primary);
}

@media (max-width: 1024px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* Nebulas Background */
.nebulas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.nebula {
    position: absolute;
    /* filter: blur(100px); */
    opacity: 0.06;
    border-radius: 50%;
}

/* .nebula-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    top: -20%;
    left: -10%;
    animation: nebulaMove1 20s infinite alternate ease-in-out;
} */

/* .nebula-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-secondary), transparent);
    bottom: -10%;
    right: -5%;
    animation: nebulaMove2 25s infinite alternate ease-in-out;
} */

/* .nebula-3 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    top: 30%;
    right: 20%;
    opacity: 0.1;
    animation: nebulaMove1 15s infinite alternate-reverse ease-in-out;
} */

@keyframes nebulaMove1 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(10%, 10%) scale(1.1); }
}

@keyframes nebulaMove2 {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-10%, -5%) scale(1.2); }
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s ease;
}

header.scrolled {
    background: rgba(5, 5, 8, 0.95);
    /* backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); */
    padding: 1rem 5%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-cta {
    padding: 0.7rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition-speed);
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.btn-cta:hover::after {
    left: 100%;
}

.btn-cta:hover {
    background: var(--text-primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Hamburger Menu */
.menu-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1100;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--bg-color);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.7s cubic-bezier(0.7, 0, 0.3, 1);
}

.menu-overlay.open {
    transform: translateY(0);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.menu-link-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.menu-link-item:hover,
.menu-link-item.active {
    color: #fff;
    -webkit-text-stroke: 1px #fff;
}

.menu-link-item .num {
    font-size: 0.9rem;
    font-family: monospace;
    color: rgba(0, 255, 255, 0.4);
    -webkit-text-stroke: 0;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .btn-cta {
        display: none;
    }
    .menu-link-item {
        font-size: 2.5rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem var(--section-padding-x);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.1;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
}

.hero-tag {
    color: var(--accent-primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.section-tag {
    display: block;
    color: var(--accent-primary);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: monospace;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Manifesto Section */
.manifesto-section {
    padding: 8rem 10%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.manifesto-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.manifesto-bold {
    font-size: 1.3rem !important;
    color: var(--text-primary) !important;
    font-style: italic;
    border-left: 3px solid var(--accent-primary);
    text-align: left;
    padding: 1rem 1.5rem;
    margin: 2.5rem 0 !important;
    background: var(--glass-bg);
    border-radius: 0 8px 8px 0;
}

/* Pillars Section */
.pillars-section {
    padding: var(--section-padding-y) var(--section-padding-x);
}

.section-header {
    text-align: center;
    margin: 0 auto 5rem;
    max-width: 800px;
}

.section-header h2 {
    font-size: 3.5rem;
}

.section-header h2 span {
    color: var(--accent-primary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.pillar-number {
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--accent-primary);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.pillar-card {
    padding: 2.5rem;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    transition: height 0.5s ease;
}

.pillar-card:hover::before {
    height: 100%;
}

.pillar-card:hover {
    background: rgba(0, 245, 255, 0.03);
    border-color: rgba(0, 245, 255, 0.2);
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Process Section */
.process {
    padding: var(--section-padding-y) var(--section-padding-x);
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.01), transparent);
}

.process-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.process-content h2 span {
    color: var(--accent-primary);
}

.process-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Features List (Process Section) */
.features-list {
    list-style: none;
    padding: 0;
    color: var(--text-secondary);
    margin: 3rem auto;
    text-align: left;
    max-width: 600px;
}

.features-list li {
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
}

.icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(0, 210, 255, 0.07);
    border: 1px solid rgba(0, 210, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

li:hover .icon-box {
    background: rgba(0, 210, 255, 0.12);
    border-color: rgba(0, 210, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.icon-discrete {
    width: 22px;
    height: 22px;
    color: var(--accent-primary);
    stroke-width: 1.8px;
}

.features-list li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.feature-text {
    line-height: 1.7;
    font-size: 1rem;
}

/* Subpages Styles */
.subpage-hero {
    padding: 12rem var(--section-padding-x) 6rem;
    text-align: center;
}

.subpage-hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.subpage-hero h1 span {
    color: var(--accent-primary);
}

/* Contact Page */
.contact-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12rem var(--section-padding-x) 8rem;
    text-align: center;
}

.contact-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.contact-content h1 span {
    color: var(--accent-primary);
}

.contact-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.btn-main-glow {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-main-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.7s ease;
}

.btn-main-glow:hover::after {
    left: 100%;
}

.btn-main-glow:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 5rem;
    width: 100%;
    justify-content: center;
}

.contact-feature-card {
    padding: 2.5rem;
    text-align: left;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-speed);
}

.contact-feature-card:hover {
    border-color: var(--accent-secondary);
    background: rgba(147, 51, 234, 0.05);
}

.contact-feature-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-primary);
    font-size: 1.2rem;
}

.contact-feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Performance Section */
.performance-section {
    padding: 8rem 10%;
    background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.05) 0%, transparent 70%);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    margin: 0 auto 4rem;
    max-width: var(--content-max-width);
}

.performance-card {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 16px;
}

.perf-metric {
    font-size: 3.5rem;
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.performance-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.performance-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Comparison Box */
.comparison-box {
    display: flex;
    padding: 4rem;
    border-radius: 20px;
    gap: 4rem;
    margin: 4rem auto 0;
    max-width: var(--content-max-width);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-col {
    flex: 1;
}

.tag-chaos {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4d4d;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.tag-flow {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    color: var(--accent-primary);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.compare-col ul {
    list-style: none;
}

.compare-col ul li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.compare-col ul li::before {
    content: '→';
    color: var(--accent-primary);
    opacity: 0.5;
}

.compare-divider {
    width: 1px;
    background: var(--glass-border);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding-y) var(--section-padding-x);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 4rem;
    margin: 4rem auto 0;
    max-width: var(--content-max-width);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pain Points / Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    padding: 0 10% 8rem;
}

.audience-card {
    padding: 3rem 2rem;
    text-align: left;
}

.audience-card .icon-box {
    width: 56px;
    height: 56px;
    margin-bottom: 2.5rem;
}

.audience-card .icon-box .icon-discrete {
    width: 28px;
    height: 28px;
}

/* Products / Pricing Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 3rem;
    padding: 0 10% 8rem;
}

.product-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-tag {
    font-size: 0.7rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-box {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-value {
    color: var(--text-primary);
    font-weight: 600;
}

.price-value.cyan {
    color: var(--accent-primary);
}

.product-features {
    list-style: none;
    margin-bottom: 3rem;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li::before {
    content: "•";
    color: var(--accent-primary);
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.product-card:hover .btn-full {
    background: #fff;
    color: #000;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* filter: drop-shadow(0 0 15px rgba(0, 245, 255, 0.2)); */
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-primary {
    background: var(--accent-primary);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-primary:hover {
    /* box-shadow: 0 0 30px rgba(0, 255, 255, 0.6); */
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.btn-secondary:hover {
    color: var(--accent-primary);
}

/* Methodology Section */
.methodology {
    padding: 10rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.methodology-content {
    flex: 1;
}

.methodology h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.methodology h2 span {
    display: block;
    color: var(--accent-primary);
}

.methodology p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.pillars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar-card {
    padding: 2rem;
    transition: transform var(--transition-speed);
}

.pillar-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Process Section */
.process {
    padding: 8rem 10%;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 255, 0.05), transparent);
}

.process h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.process p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
}

/* Footer */
footer {
    padding: 4rem 10% 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

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

.footer-links a:hover {
    color: var(--accent-primary);
}

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

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color var(--transition-speed);
}

.social-links a:hover {
    color: var(--accent-primary);
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .methodology {
        flex-direction: column;
        padding: 5rem 5%;
    }
    .process h2 {
        font-size: 2.5rem;
    }
    .pillars-grid, .performance-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    .manifesto-content h2,
    .section-header h2,
    .process-content h2 {
        font-size: 2.5rem;
    }
    .comparison-box {
        flex-direction: column;
        padding: 2.5rem;
        gap: 3rem;
    }
    .compare-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .manifesto-section {
        padding: 5rem 5%;
    }
    .pillars-section, 
    .process, 
    .performance-section, 
    .faq-section, 
    .subpage-hero, 
    .hero {
        padding-left: var(--section-padding-x-mobile);
        padding-right: var(--section-padding-x-mobile);
        padding-top: var(--section-padding-y-mobile);
        padding-bottom: var(--section-padding-y-mobile);
    }
    
    /* MOBILE LEGIBILITY CRO */
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .subpage-hero h1 {
        font-size: 2.2rem;
    }
    .section-header h2, .process-content h2, .contact-content h1 {
        font-size: 2rem;
    }
    .pillar-card p, .contact-content p, .process-content p, .audience-card p, .faq-item p {
        font-size: 1.05rem; /* Ensures no zoom required */
        line-height: 1.6;
    }

    /* CARD RESPIRATION (PADDING REDUCTION) */
    .pillar-card, .performance-card, .product-card, .audience-card, .contact-feature-card, .comparison-box {
        padding: 1.5rem;
    }
}

/* SPA Transitions */
main {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

main.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

main.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- CRO & MOBILE-FIRST OPTIMIZATIONS --- */

.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
    background: rgba(5, 5, 8, 0.98);
    /* backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.btn-sentinela {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 1.1rem 2.2rem;
    background: rgba(255, 255, 255, 0.03);
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.btn-sentinela .sub-text {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.btn-sentinela:hover {
    background: #fff;
    color: #000;
    /* box-shadow: 0 0 25px rgba(0, 245, 255, 0.4); */
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-primary);
}

.btn-sentinela::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.7s ease;
}

.btn-sentinela:hover::after {
    left: 100%;
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: flex;
    }
    
    body {
        padding-bottom: 120px;
    }

    .menu-overlay {
        padding-bottom: 120px; /* Offset to center above the sticky CTA completely secure */
    }

    .btn-sentinela {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* Cookie Banner LGPD */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 550px;
    background: rgba(5, 5, 8, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--accent-primary);
    border-radius: 8px;
    padding: 1.5rem;
    z-index: 3000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
}

.cookie-banner.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.cookie-icon svg {
    display: block;
    margin-top: 2px;
}

.cookie-title {
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.cookie-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.2rem 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-cookie.btn-solid {
    background: var(--text-primary);
    color: #000;
    border-color: var(--text-primary);
}

.btn-cookie:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-cookie.btn-solid:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 110px; /* Above the mobile sticky CTA */
        left: 15px;
        right: 15px;
        max-width: none;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    .cookie-icon {
        display: none;
    }
    .cookie-actions {
        width: 100%;
    }
    .btn-cookie {
        flex: 1;
        text-align: center;
        padding: 0.8rem;
    }
}
