/* Odextra Studio - Midnight Future (Hybrid) */
:root {
    /* Colors - Midnight Future */
    --bg: #050507;
    /* Deep Black */
    --bg-depth: #0E0E11;
    /* Slightly Lighter Black */
    --surface: #131316;
    --surface-highlight: #1C1C21;

    --text: #EDEDED;
    /* Off-white for readability */
    --text-muted: #94949E;
    --text-dim: #555560;

    --primary: #FFFFFF;
    --accent: #7000FF;
    /* Electric Purple */
    --accent-glow: rgba(112, 0, 255, 0.4);
    --accent-gradient: linear-gradient(135deg, #7000FF 0%, #AE00FF 100%);

    --border: #1F1F25;
    --border-light: #2A2A35;

    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Outfit', sans-serif;

    /* Layout */
    --container: 1280px;
    --header-height: 100px;
    --gap: 30px;

    /* Animation */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* -------------------------------------------------------------------------- */
/* Hero Section (Midnight Future) */
/* -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #050507;
    /* Fallback */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.15) 0%, rgba(5, 5, 7, 0) 70%),
        radial-gradient(circle at 80% 20%, rgba(174, 0, 255, 0.1) 0%, rgba(5, 5, 7, 0) 50%);
    z-index: 1;
}

/* Gradient Blob for that "Beautiful Purple" effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--accent-gradient);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: var(--text);
    padding: 0 40px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 24px;
    display: block;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    /* Fraunces looks better lighter/elegant */
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* -------------------------------------------------------------------------- */
/* Methodology Section (Dark Flow) */
/* -------------------------------------------------------------------------- */
.methodology-section {
    padding: 120px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    position: relative;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text);
    margin-bottom: 20px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.method-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.method-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    color: var(--text);
}

.method-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.method-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.method-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* -------------------------------------------------------------------------- */
/* Reset & Base */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background-color: #050507;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    font-feature-settings: "ss01", "ss02", "cv01";
}

/* Base Styles */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s var(--ease-out);
}


a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s var(--ease-out);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

/* -------------------------------------------------------------------------- */
/* Typography */
/* -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
.display-text {
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* -------------------------------------------------------------------------- */
/* Split Section (Dark Flow) */
/* -------------------------------------------------------------------------- */
.split-section {
    padding: 120px 0;
    background: var(--bg-depth);
    /* Use depth for contrast */
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-image {
    position: relative;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content .eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    font-size: 0.85rem;
}

.split-content h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--text);
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* -------------------------------------------------------------------------- */
/* Process Section (Dark Flow) */
/* -------------------------------------------------------------------------- */
.process-section {
    position: relative;
    padding: 160px 0;
    background: var(--bg-depth);
    /* Slightly lighter black */
    overflow: hidden;
}

.process-overlay {
    /* Subtle texture or noise could go here */
    display: none;
}

.process-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.process-step {
    padding-right: 20px;
}

.step-num {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    font-family: var(--font-body);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 24px 0 40px 0;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 1rem 0;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
}

.text-muted {
    color: #888;
}

.text-center {
    text-align: center;
}


/* -------------------------------------------------------------------------- */
/* Layout & Grid */
/* -------------------------------------------------------------------------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.container-fluid {
    padding: 0 40px;
    width: 100%;
}

.section-padding {
    padding: 160px 0;
}

/* -------------------------------------------------------------------------- */
/* Header */
/* -------------------------------------------------------------------------- */
.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: absolute;
    /* Overlap hero */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s var(--ease-out);
    border-bottom: none;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    border-bottom: 1px solid var(--border-light);
    height: 80px;
    position: fixed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    gap: 6px;
    color: var(--text);
    z-index: 10;
}

.nav-links {
    display: flex;
    gap: 3rem;
    /* Clean Nav */
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* -------------------------------------------------------------------------- */
/* Buttons - Magnetic & Glow */
/* -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    z-index: 1;
    font-family: var(--font-heading);
}

.btn-primary {
    background: #fff;
    /* White button on dark bg */
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: var(--accent);
    /* Purple hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* -------------------------------------------------------------------------- */
/* Service / Template Grid (Corporate Style) */
/* -------------------------------------------------------------------------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* -------------------------------------------------------------------------- */
/* Service / Template Grid (Glass Cards) */
/* -------------------------------------------------------------------------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    position: relative;
    border: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    border-color: transparent;
}

.card-img-wrapper {
    position: relative;
    padding-top: 60%;
    /* Aspect Ratio 16:10 */
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glass);
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-body {
    padding: 24px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 400;
    font-family: var(--font-heading);
}


.card-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: none;
    display: none;
    /* Hide footer for clean look */
}

.btn-link {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* Tablet / Mobile Responsive */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        gap: 30px;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
}

.hero-sub-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2rem;
}

.hero-sub {
    font-size: 1.25rem;
    max-width: 500px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
}


/* -------------------------------------------------------------------------- */
/* Marketplace / Works (Dark Flow) */
/* -------------------------------------------------------------------------- */
.marketplace-section {
    position: relative;
    padding-bottom: 100px;
}

.marketplace-bar-wrapper {
    position: sticky;
    top: 80px;
    z-index: 900;
    padding: 20px 0;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    pointer-events: none;
}

.marketplace-bar {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    width: 90%;
}

.filter-chips {
    display: flex;
    gap: 6px;
}

.chip {
    padding: 8px 20px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    background: transparent;
    color: var(--text-muted);
}

.chip:hover {
    color: var(--text);
    background: var(--bg-depth);
}

.chip.active {
    background: var(--text);
    color: #fff;
    box-shadow: none;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 0 8px 30px;
    color: #fff;
    font-family: inherit;
    width: 250px;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 60px;
    margin: 0 auto;
    max-width: var(--container);
    padding: 80px 40px;
}

.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.bento-img-container {
    background: #111;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-radius: 4px;
    margin-bottom: 30px;
}

.bento-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.bento-img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
    filter: grayscale(20%);
}

.bento-card:hover .bento-img-real {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.preview-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #000;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 100px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.bento-card:hover .preview-badge {
    opacity: 1;
    transform: translateY(0);
}

.bento-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bento-header .industry {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.bento-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.bento-title a {
    color: #fff;
    transition: color 0.3s;
}

.bento-title a:hover {
    color: var(--accent);
}

.bento-actions {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.bento-card:hover .bento-actions {
    opacity: 1;
    transform: translateX(0);
}

/* -------------------------------------------------------------------------- */
/* Sales Page (Restored & Enhanced) */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* Sales Page (Restored & Enhanced) */
/* -------------------------------------------------------------------------- */
.sales-page-wrapper {
    background: var(--bg);
    margin-top: -100px;
}

.sales-hero {
    height: 90vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    color: #fff;
    overflow: hidden;
}

.sales-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: saturate(0) contrast(1.2) brightness(0.6);
}

.sales-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg) 10%, rgba(5, 5, 7, 0.8) 50%, rgba(5, 5, 7, 0.4));
    z-index: 2;
}

.sales-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sales-title h1 {
    font-size: clamp(3.5rem, 6vw, 7rem);
    line-height: 0.95;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: var(--font-heading);
}

.sales-sub {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    max-width: 600px;
    font-weight: 300;
}

.sales-cta-box {
    background: rgba(14, 14, 17, 0.6);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    min-width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sales-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    letter-spacing: -0.04em;
    font-family: var(--font-heading);
}

.sales-license {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 24px;
    font-weight: 600;
}

/* Feature Marquee */
.feature-marquee {
    background: var(--bg-depth);
    color: #fff;
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.feature-track {
    display: inline-flex;
    animation: marquee 40s linear infinite;
}

.feature-item {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 60px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
}

.feature-icon {
    color: var(--accent);
}

/* Z-Layout */
.sales-section {
    padding: 160px 0;
}

.z-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 120px;
    margin-bottom: 160px;
}

.z-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.z-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.z-image {
    background: var(--surface);
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
}

.z-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.z-layout:hover .z-image img {
    transform: scale(1.05);
}

/* -------------------------------------------------------------------------- */
/* Footer (Restored) */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* Footer */
/* -------------------------------------------------------------------------- */
.site-footer {
    border-top: 1px solid var(--border-glass);
    padding: 100px 0 40px;
    margin-top: 100px;
    background: var(--bg-depth);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-glass);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    display: block;
    color: #fff;
    font-family: var(--font-heading);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 320px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* -------------------------------------------------------------------------- */
/* Process Section */
/* -------------------------------------------------------------------------- */
.process-section {
    background: var(--bg-depth);
    padding: 140px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.process-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-card {
    padding: 40px;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.4) 0%, rgba(10, 10, 12, 0.2) 100%);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.6) 0%, rgba(10, 10, 12, 0.4) 100%);
}

.process-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
    font-family: var(--font-heading);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    position: relative;
}

.process-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* -------------------------------------------------------------------------- */
/* Newsletter Section */
/* -------------------------------------------------------------------------- */
.newsletter-section {
    padding: 160px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    position: relative;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.newsletter-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #FFFFFF 0%, #AAC4FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 20px 30px;
    border-radius: 100px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 20px 40px;
}

/* -------------------------------------------------------------------------- */
/* Mobile Responsive */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }

    /* Global */
    .section-padding {
        padding: 80px 0;
    }

    .container,
    .container-fluid {
        padding: 0 20px;
    }

    /* Typography */
    h1.display-xl {
        font-size: clamp(3rem, 15vw, 5rem);
        margin-left: 0;
    }

    h2 {
        font-size: 2rem;
    }

    /* Header */
    .nav-links {
        display: none;
        /* Hidden for now on mobile, or could be a hamburger */
    }

    .logo {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        justify-items: center;
    }

    .hero-text-col,
    .hero-sub-col {
        width: 100%;
        align-items: center;
    }

    .hero-sub {
        margin: 0 auto 30px;
    }

    .hero-actions {
        justify-content: center;
    }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 20px;
    }

    /* Marketplace Bar */
    .marketplace-bar {
        padding: 10px;
        flex-direction: column;
        gap: 15px;
        width: 95%;
    }

    .filter-chips {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .search-input {
        width: 100%;
    }

    /* Sales Page */
    .sales-hero {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        align-items: center;
        text-align: center;
    }

    .sales-hero-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .sales-title h1 {
        font-size: 3rem;
    }

    .sales-cta-box {
        width: 100%;
        min-width: 0;
        padding: 30px;
    }

    .z-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 100px;
        text-align: center;
    }

    .z-layout.reverse {
        direction: ltr;
    }

    .z-layout.reverse>* {
        direction: ltr;
    }

    .z-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .grid-2-col {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .grid-2-col>div>div {
        grid-template-columns: 1fr !important;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* New Sections Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-header h2 {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    /* Sticky Mobile CTA (Sales Page) */
    .sticky-mobile-cta {
        display: flex !important;
    }
}

/* -------------------------------------------------------------------------- */
/* Custom Cursor (Midnight Future) */
/* -------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
        will-change: transform, width, height, background-color, border-color;
    }

    .cursor-dot {
        width: 6px;
        height: 6px;
        background-color: var(--accent);
        box-shadow: 0 0 10px var(--accent);
    }

    .cursor-outline {
        width: 30px;
        height: 30px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: width 0.2s cubic-bezier(0.25, 1, 0.5, 1),
            height 0.2s cubic-bezier(0.25, 1, 0.5, 1),
            background-color 0.2s,
            border-color 0.2s;
    }

    body.hovering .cursor-outline {
        width: 50px;
        height: 50px;
        background-color: rgba(59, 130, 246, 0.1);
        border-color: var(--accent);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    }

    body.hovering .cursor-dot {
        background-color: #fff;
        width: 4px;
        height: 4px;
    }
}

/* -------------------------------------------------------------------------- */
/* Page Transition */
/* -------------------------------------------------------------------------- */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* -------------------------------------------------------------------------- */
/* Sticky Mobile CTA (Hidden on Desktop) */
/* -------------------------------------------------------------------------- */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    border-top: 1px solid var(--border);
    z-index: 999;
    display: none;
    /* Flex on mobile via media query */
    justify-content: space-between;
    align-items: center;
    animation: slideUp 0.5s ease-out;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.sticky-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}