/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar - Black Theme */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f2efe6;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 6px;
    border: 2px solid #f2efe6;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #feda0a;
    box-shadow: 0 0 10px rgba(254, 218, 10, 0.5);
}

::-webkit-scrollbar-corner {
    background: #f2efe6;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #1a1a1a #f2efe6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f2efe6;
    color: #000000;
    overflow-x: hidden;
    line-height: 1.6;
}

.font-mono {
    font-family: 'Space Mono', monospace;
}

/* ===========================
   GHOST ANIMATIONS
   =========================== */
@keyframes ghostFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scanLine {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Color Animation for Buttons - Single Yellow Color #feda0a */
@keyframes colorLoop {
    0% { background-color: #feda0a; color: #000000; }
    100% { background-color: #feda0a; color: #000000; }
}

/* Color Loop for Login Button - Border and Text Only (background stays light) */
@keyframes colorLoopBorderOnly {
    0% { border-color: #feda0a; color: #feda0a; box-shadow: 0 0 20px rgba(254, 218, 10, 0.4); }
    100% { border-color: #feda0a; color: #feda0a; box-shadow: 0 0 20px rgba(254, 218, 10, 0.4); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(34, 197, 94, 0); }
    50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.3); }
}

/* ===========================
   NAVIGATION - GHOST STYLE
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(242, 239, 230, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.logo-img-footer {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #000000;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Logo text glows YELLOW on hover */
.logo-text:hover {
    color: #feda0a;
    text-shadow: 0 0 20px rgba(254, 218, 10, 0.6);
}

.nav-links {
    display: none;
    gap: 2.5rem;
    font-size: 0.9rem;
}

.nav-links a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
}

.nav-links a:hover {
    color: #000000;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Profile Icon Styling */
.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(0, 0, 0, 0.7);
}

.profile-icon:hover {
    border-color: #feda0a;
    background: rgba(254, 218, 10, 0.1);
    color: #feda0a;
    box-shadow: 0 0 20px rgba(254, 218, 10, 0.4);
    text-shadow: 0 0 15px rgba(254, 218, 10, 0.6);
    transform: scale(1.05);
}

.profile-icon svg {
    transition: all 0.3s ease;
}

.profile-icon:hover svg {
    filter: drop-shadow(0 0 8px rgba(254, 218, 10, 0.8));
}

.btn-secondary-nav {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #000000;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1.25rem;
    font-family: 'Space Mono', monospace;
}

.btn-secondary-nav:hover {
    animation: colorLoopBorderOnly 12s linear infinite;
}

.btn-primary {
    background: #000000;
    color: #f2efe6;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.btn-primary:hover {
    animation: colorLoop 12s linear infinite;
    transform: translateY(-2px);
}

.btn-ghost-primary {
    background: #000000;
    color: #f2efe6;
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.btn-ghost-primary:hover {
    animation: colorLoop 12s linear infinite;
    transform: translateY(-2px);
}

.btn-ghost-secondary {
    background: transparent;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.btn-ghost-secondary:hover {
    animation: colorLoop 12s linear infinite;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* ===========================
   HERO - GHOST INTERFACE
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    overflow: hidden;
    background: #f2efe6;
}

.grid-pattern-ghost {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02), #f2efe6);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title-ghost {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #000000;
    animation: ghostFade 1s ease-out;
}


.ghost-highlight {
    font-weight: 600;
    position: relative;
    transition: all 0.4s ease;
}

.ghost-highlight:hover {
    color: #feda0a;
    text-shadow: 0 0 20px rgba(254, 218, 10, 0.6);
}

.hero-subtitle-ghost {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    animation: ghostFade 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    animation: ghostFade 1s ease-out 0.4s both;
}

.hero-buttons .btn-ghost-primary {
    padding: 1rem 3rem;
    font-size: 0.95rem;
}

.hero-buttons .btn-ghost-secondary {
    padding: 1rem 3rem;
    font-size: 0.95rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-small {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-ghost {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #000000;
}

.section-subtitle-ghost {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Space Mono', monospace;
}

/* Yellow Highlight Background - Rectangular box behind text */
.yellow-highlight {
    background: #feda0a;
    padding: 0.2em 0.4em;
    color: #000000;
    font-weight: 600;
    display: inline-block;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.anatomy-section {
    padding: 8rem 0;
    background: #f2efe6;
}

.anatomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.anatomy-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.01);
    padding: 2rem;
    transition: all 0.4s ease;
}

.anatomy-fail {
    border-color: rgba(239, 68, 68, 0.2);
}

.anatomy-fail:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.05);
}

.anatomy-success {
    border-color: rgba(34, 197, 94, 0.2);
}

.anatomy-success:hover {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.05);
}

.anatomy-header {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.9);
    font-family: 'Space Mono', monospace;
}

.anatomy-visual {
    margin-bottom: 1.5rem;
}

.anatomy-svg {
    width: 100%;
    height: auto;
}

.anatomy-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.anatomy-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Space Mono', monospace;
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Space Mono', monospace;
}

.fail-text {
    color: #ef4444;
}

.success-text {
    color: #22c55e;
}

/* ===========================
   UNIVERSAL GENOME SECTION
   =========================== */
.universal-genome-section {
    padding: 8rem 0;
    background: #f2efe6;
}

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

.genome-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.01);
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.genome-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.02);
    transform: translateY(-8px);
}

/* Color-specific glows for genome cards */
.genome-card[data-color="blue"]:hover {
    border-color: rgb(254, 218, 10);
    background: rgba(1, 3, 7, 0.05);
    box-shadow: 0 0 30px rgba(254, 218, 10, 0.6);
}

.genome-card[data-color="blue"]:hover .genome-icon {
    color: #feda0a;
    filter: drop-shadow(0 0 10px rgba(254, 218, 10, 0.6));
}

.genome-card[data-color="red"]:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.05);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.genome-card[data-color="red"]:hover .genome-icon {
    color: #ef4444;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.6));
}

.genome-card[data-color="orange"]:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(249, 115, 22, 0.05);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
}

.genome-card[data-color="orange"]:hover .genome-icon {
    color: #f97316;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.6));
}

.genome-card[data-color="green"]:hover {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.05);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.genome-card[data-color="green"]:hover .genome-icon {
    color: #22c55e;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.6));
}

.genome-card[data-color="yellow"]:hover {
    border-color: rgba(234, 179, 8, 0.5);
    background: rgba(234, 179, 8, 0.05);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
}

.genome-card[data-color="yellow"]:hover .genome-icon {
    color: #eab308;
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.6));
}

.genome-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.genome-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(0, 0, 0, 0.9);
}

.genome-description {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
}

.genome-detail {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ===========================
   WORKFLOW SECTION (6-Station Process)
   =========================== */
.workflow-section {
    padding: 8rem 0;
    background: #f2efe6;
}

.workflow-pipeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-station {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.01);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.workflow-station:hover {
    transform: translateX(8px);
}

/* Color-specific glows for workflow stations */
.workflow-station[data-color="blue"]:hover {
    border-color: rgb(254, 218, 10);
    background: rgba(1, 3, 7, 0.05);
    box-shadow: 0 0 30px rgba(254, 218, 10, 0.6);
}

.workflow-station[data-color="blue"]:hover .station-icon {
    color: #feda0a;
    filter: drop-shadow(0 0 10px rgba(254, 218, 10, 0.6));
}

.workflow-station[data-color="red"]:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.05);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
}

.workflow-station[data-color="red"]:hover .station-icon {
    color: #ef4444;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.6));
}

.workflow-station[data-color="orange"]:hover {
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(249, 115, 22, 0.05);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.3);
}

.workflow-station[data-color="orange"]:hover .station-icon {
    color: #f97316;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.6));
}

.workflow-station[data-color="green"]:hover {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.05);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.workflow-station[data-color="green"]:hover .station-icon {
    color: #22c55e;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.6));
}

.workflow-station[data-color="yellow"]:hover {
    border-color: rgba(234, 179, 8, 0.5);
    background: rgba(234, 179, 8, 0.05);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
}

.workflow-station[data-color="yellow"]:hover .station-icon {
    color: #eab308;
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.6));
}

.workflow-station[data-color="purple"]:hover {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.workflow-station[data-color="purple"]:hover .station-icon {
    color: #a855f7;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}

.station-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    font-family: 'Space Mono', monospace;
}

.station-icon {
    width: 48px;
    height: 48px;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.station-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(0, 0, 0, 0.9);
}

.station-description {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Space Mono', monospace;
}

.workflow-arrow {
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.2);
    text-align: center;
    display: none;
}

@media (min-width: 768px) {
    .workflow-pipeline {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .workflow-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===========================
   TOGGLE SECTION ("Do It Right")
   =========================== */
.toggle-section {
    padding: 8rem 0;
    background: #f2efe6;
}

.toggle-container {
    max-width: 800px;
    margin: 0 auto;
}

.toggle-switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.toggle-label {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Space Mono', monospace;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: 0.4s;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
    background-color: #22c55e;
}

.toggle-visual {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.01);
    padding: 3rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-comparison {
    width: 100%;
    max-width: 600px;
}

.visual-mode {
    transition: opacity 0.5s ease;
}

.comparison-svg {
    width: 100%;
    height: auto;
}

.precision-stats {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.stat-box {
    text-align: center;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.01);
    min-width: 300px;
    transition: all 0.5s ease;
}

.stat-title {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Space Mono', monospace;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.4);
    font-family: 'Space Mono', monospace;
}

/* ===========================
   CTA SECTION - GHOST
   =========================== */
.cta-section-ghost {
    padding: 10rem 0;
    background: #f2efe6;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title-ghost {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000;
}

.cta-description-ghost {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 3rem;
    font-family: 'Space Mono', monospace;
}

.cta-buttons-ghost {
    display: flex;
    justify-content: center;
}

.cta-buttons-ghost .btn-ghost-primary {
    padding: 1.25rem 3.5rem;
    font-size: 1rem;
}

/* ===========================
   FOOTER - GHOST
   =========================== */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem 0 2rem;
    background-color: #f2efe6;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.85rem;
    font-family: 'Space Mono', monospace;
}

.footer-title {
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.footer-links a:hover {
    color: #000000;
}

.footer-newsletter-text {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: #000000;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.newsletter-input:focus {
    border-color: rgba(0, 0, 0, 0.3);
}

.newsletter-btn {
    background-color: #000000;
    color: #f2efe6;
    border: none;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.newsletter-btn:hover {
    animation: colorLoop 12s linear infinite;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.3);
    font-family: 'Space Mono', monospace;
}

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

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.footer-legal a:hover {
    color: #000000;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 640px) {
    .hero-title-ghost {
        font-size: 2.5rem;
    }
    
    .section-title-ghost {
        font-size: 2rem;
    }
    
    .cta-title-ghost {
        font-size: 2.5rem;
    }
    
    .anatomy-grid {
        grid-template-columns: 1fr;
    }
}.logo-img {
    display: none !important;
}

.logo-img-footer {
    display: none !important;
}
