:root {
    /* Dark Mode Premium Theme */
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent: #6b21a8;
    /* Deep Purple */
    --accent-glow: #e879f9;
    /* Pinkish glow for shiny elements */
    --gradient-text: linear-gradient(135deg, #e879f9 0%, #6b21a8 100%);

    --card-bg: rgba(20, 20, 22, 0.4);
    --card-border: rgba(232, 121, 249, 0.15);
    /* Slight pink hue on borders */
    --nav-bg: rgba(5, 5, 5, 0.7);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

.section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

h1,
h2,
h3,
.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ------------------------------------- */
/* Interactive Background Layering */
/* ------------------------------------- */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(232, 121, 249, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(232, 121, 249, 0.03) 1px, transparent 1px);
    z-index: -2;
    mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background-color: var(--bg-color);
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    animation: drift 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #6b21a8;
    /* Purple */
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #e879f9;
    /* Pinkish */
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, -50px);
    }

    100% {
        transform: translate(-50px, 30px);
    }
}

/* ------------------------------------- */
/* Navbar */
/* ------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav-scrolled {
    background: rgba(10, 10, 12, 0.4);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 6%;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--gradient-text);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(232, 121, 249, 0.4);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    color: #fff;
}

.nav-social {
    color: var(--accent-glow) !important;
}

.nav-social:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(232, 121, 249, 0.5);
}

.btn-primary-small {
    background: #fff;
    color: #000 !important;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary-small:hover {
    background: #e2e8f0;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* ------------------------------------- */
/* Sections */
/* ------------------------------------- */
.section {
    padding: 8rem 6%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.pill-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-glow);
    border-radius: 50%;
    box-shadow: 0 0 15px 2px var(--accent-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(232, 121, 249, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(232, 121, 249, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(232, 121, 249, 0);
    }
}

.hero-line {
    display: inline-block;
    overflow: hidden;
    padding-bottom: 0.25em;
    margin-bottom: -0.25em;
    vertical-align: top;
}

.hero-line-inner {
    display: inline-block;
    padding-bottom: 0.1em;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.serendale-heading {
    position: relative;
    text-shadow: 0 20px 60px rgba(107, 33, 168, 0.4);
}

.ai-shimmer {
    background: linear-gradient(110deg, #3b82f6 0%, #8b5cf6 25%, #e879f9 50%, #8b5cf6 75%, #3b82f6 100%);
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    text-shadow: 0 0 40px rgba(232, 121, 249, 0.5);
    display: inline-block;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.highlight-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(232, 121, 249, 0.4);
    /* Glowing text! */
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 3rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary.glow-btn {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15),
        0 0 15px rgba(232, 121, 249, 0.2);
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(232, 121, 249, 0.3) inset;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 121, 249, 0.3);
    box-shadow: 0 0 30px rgba(232, 121, 249, 0.15) inset;
}

/* ------------------------------------- */
/* Marquee Carousel */
/* ------------------------------------- */
.marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Full width breakout */
    background: rgba(107, 33, 168, 0.1);
    border-top: 1px solid rgba(232, 121, 249, 0.1);
    border-bottom: 1px solid rgba(232, 121, 249, 0.1);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll-marquee 25s linear infinite;
    width: fit-content;
}

.marquee-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-glow);
    text-shadow: 0 0 10px rgba(232, 121, 249, 0.3);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

/* ------------------------------------- */
/* Typography */
/* ------------------------------------- */
h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

/* ------------------------------------- */
/* FYNSEC Bento Grid Layout */
/* ------------------------------------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 2rem;
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
}

.bento-wide {
    grid-column: span 2;
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.9) 0%, rgba(10, 10, 12, 0.95) 100%) !important;
    position: relative;
    overflow: hidden;
}

.bento-standard {
    grid-column: span 1;
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.9) 0%, rgba(10, 10, 12, 0.95) 100%) !important;
}

/* Add an explicit large map/graphic representation for the wide box */
.bento-wide .bento-map-graphic {
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 60%;
    height: 120%;
    background-image:
        radial-gradient(circle at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%),
        repeating-linear-gradient(0deg, transparent, transparent 10px, rgba(232, 121, 249, 0.05) 10px, rgba(232, 121, 249, 0.05) 11px),
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(232, 121, 249, 0.05) 10px, rgba(232, 121, 249, 0.05) 11px);
    z-index: 0;
    pointer-events: none;
    transform: perspective(500px) rotateY(-20deg) rotateX(10deg);
}

.card.gsap-feature-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    overflow: hidden;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 121, 249, 0.8), transparent);
    opacity: 0.5;
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.card:hover::before {
    transform: translateX(200%);
}

.card-inner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(232, 121, 249, 0.15) 0%, transparent 60%);
    opacity: 0.5;
    transition: opacity 0.5s ease, background 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.card:hover .card-inner-glow {
    opacity: 1;
    background: radial-gradient(circle at 50% 0%, rgba(232, 121, 249, 0.25) 0%, transparent 70%);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(232, 121, 249, 0.1) inset;
    border-color: rgba(232, 121, 249, 0.2);
}

.icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: auto;
    /* Pushes content below to bottom in grid */
    color: var(--accent-glow);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.card:hover .icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(232, 121, 249, 0.15), rgba(168, 85, 247, 0.05));
    border-color: rgba(232, 121, 249, 0.4);
    color: #fff;
    box-shadow: 0 0 30px rgba(232, 121, 249, 0.3);
}

.card h3 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.02em;
    z-index: 2;
    position: relative;
}

.card:hover h3 {
    color: var(--accent-glow);
}

.card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}

/* ------------------------------------- */
/* How it works Section */
/* ------------------------------------- */
.technical-section {
    padding-top: 5rem;
}

.step-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent-glow), transparent);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .step-container::before {
        display: none;
    }
}

.step-row {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
}

.step-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(232, 121, 249, 0.3);
    line-height: 1;
    min-width: 100px;
}

.step-content {
    background: rgba(20, 20, 22, 0.6);
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.step-content:hover {
    border-color: rgba(232, 121, 249, 0.3);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ------------------------------------- */
/* Split Section / Security */
/* ------------------------------------- */
.split-section {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.split-section>* {
    flex: 1;
}

.text-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
    color: var(--text-primary);
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-glow);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(232, 121, 249, 0.5);
}

/* Terminal Mockup */
.glass-mockup {
    background: #09090b;
    border: 1px solid #27272a;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(107, 33, 168, 0.3);
    /* Glow around terminal */
    overflow: hidden;
}

.mockup-header {
    background: #18181b;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #27272a;
    position: relative;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #eab308;
}

.dot.green {
    background: #22c55e;
}

.mockup-title {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    font-size: 0.85rem;
    color: #a1a1aa;
    font-family: monospace;
}

.mockup-body {
    padding: 2rem;
    font-family: 'JetBrains Mono', Consolas, monospace;
    font-size: 0.95rem;
    overflow-x: auto;
    color: #e4e4e7;
}

.mockup-body code {
    white-space: pre;
    line-height: 1.6;
}

/* Syntax */
code .comment {
    color: #6b7280;
}

code .keyword {
    color: #c678dd;
}

code .function {
    color: #61afef;
}

code .number {
    color: #d19a66;
}

/* ------------------------------------- */
/* Dashboard Showcase */
/* ------------------------------------- */
.dashboard-showcase {
    overflow: hidden;
}

.dash-ui {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dash-ui:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(232, 121, 249, 0.4);
}

.bar {
    transition: height 0.5s ease;
}

.bar:hover {
    filter: brightness(1.5);
    box-shadow: 0 0 15px rgba(232, 121, 249, 0.6);
}

/* ------------------------------------- */
/* Advanced Neumorphic Toggle Switch */
/* ------------------------------------- */
.toggle-container {
    display: flex;
    align-items: center;
    background: rgba(20, 20, 22, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cyber-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.cyber-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1a1f;
    transition: .4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(135deg, #2a2a30, #141416);
    transition: .4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

input:checked+.toggle-slider {
    background-color: rgba(168, 85, 247, 0.2);
    border-color: rgba(232, 121, 249, 0.4);
    box-shadow: inset 0 0 15px rgba(232, 121, 249, 0.2);
}

input:checked+.toggle-slider:before {
    transform: translateX(28px);
    background: linear-gradient(135deg, #e879f9, #6b21a8);
    box-shadow: 0 0 15px rgba(232, 121, 249, 0.8), inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

/* Hover effects */
.cyber-toggle:hover .toggle-slider {
    border-color: rgba(255, 255, 255, 0.2);
}

input:checked:hover+.toggle-slider {
    border-color: rgba(232, 121, 249, 0.6);
}

/* ------------------------------------- */
/* FAQ Section */
/* ------------------------------------- */
.faq-question:hover h3 {
    color: var(--accent-glow);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

/* ------------------------------------- */
/* Contact & Reviews Section */
/* ------------------------------------- */
.review-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 121, 249, 0.4) !important;
    box-shadow: 0 10px 40px rgba(107, 33, 168, 0.15);
}

.contact-section {
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(20, 20, 22, 0.8) 0%, rgba(107, 33, 168, 0.2) 100%);
    border: 1px solid rgba(232, 121, 249, 0.3);
    border-radius: 24px;
    padding: 5rem 10%;
    text-align: center;
    box-shadow: 0 0 50px rgba(107, 33, 168, 0.2);
    backdrop-filter: blur(20px);
}

.contact-card h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-pill.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.contact-pill.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.contact-pill.email {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-pill.email:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}


/* ------------------------------------- */
/* Footer Grid */
/* ------------------------------------- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 6% 3rem;
    background: var(--bg-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--text-secondary);
    max-width: 300px;
    margin-top: 1rem;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent-glow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: #fff;
}

/* ------------------------------------- */
/* Utilities */
/* ------------------------------------- */
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 121, 249, 0.2), transparent);
    margin: 2rem 0;
}

/* ------------------------------------- */
/* Custom Interaction Styles */
/* ------------------------------------- */

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-glow);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(232, 121, 249, 0.4);
    box-shadow: 0 0 10px rgba(232, 121, 249, 0.1);
    transition: width 0.2s, height 0.2s;
}

/* Cursor effects on interactive elements */
body.interactive-hover .cursor-dot {
    opacity: 0;
}

body.interactive-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(232, 121, 249, 0.1);
    border-color: rgba(232, 121, 249, 0.8);
    backdrop-filter: blur(2px);
}

/* Hide default cursor on desktop */
@media (min-width: 1024px) {
    body.premium-layout {
        cursor: none;
    }

    body.premium-layout a,
    body.premium-layout button,
    body.premium-layout .cyber-toggle input {
        cursor: none;
    }
}

/* Magnetic Buttons */
.btn-primary,
.btn-secondary {
    position: relative;
    z-index: 5;
    /* Magnetic logic runs on JS, visual hints below */
    transition: transform 0.1s linear, background 0.3s ease, box-shadow 0.3s ease;
}

/* Apple-Style Fullscreen Slider */
.apple-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide.active .slide-bg-img {
    transform: scale(1);
    opacity: 0.3;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 5%;
}

.slide-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
}

.slide-desc {
    font-size: 1.2rem;
    color: #e4e4e7;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.progress-bar-container {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-glow);
    transition: width 0.3s ease;
}

.slide-numbers {
    font-family: 'Space Grotesk', monospace;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ------------------------------------- */
/* Responsive adjustments */
/* ------------------------------------- */
@media (max-width: 1024px) {
    .split-section {
        flex-direction: column;
        gap: 4rem;
        text-align: left;
    }

    .image-content {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .section {
        padding: 8rem 5%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col.branding {
        grid-column: 1 / -1;
    }

    /* New rules for 1024px */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-wide,
    .bento-standard {
        grid-column: span 1;
    }

    .metrics-container {
        flex-direction: column;
    }

    .metrics-container .metric-box {
        border: none !important;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .metrics-container .metric-box:last-child {
        border-bottom: none !important;
        padding-bottom: 0;
    }

    .dash-ui>div:nth-child(2) {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-scrolled {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
    }

    /* Hide complex nav on mobile */

    .nav-social {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .hero {
        padding-top: 8rem;
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .step-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3.5rem;
    }

    .step-number {
        font-size: 3rem;
        min-width: auto;
    }

    .step-content {
        padding: 2rem;
    }

    .feature-list li {
        font-size: 1.05rem;
    }

    .contact-card {
        padding: 3rem 1.5rem;
    }

    .contact-methods {
        flex-direction: column;
    }

    .contact-pill {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 2rem 1.5rem;
    }

    .mockup-body {
        padding: 1.5rem;
        font-size: 0.85rem;
    }

    .hero-content {
        width: 100%;
    }
}

/* ------------------------------------- */
/* Toast Notifications */
/* ------------------------------------- */
.toast-notification {
    background: rgba(20, 20, 22, 0.8);
    border: 1px solid rgba(232, 121, 249, 0.3);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(232, 121, 249, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
}

.toast-notification i {
    color: var(--accent-glow);
}