/* CSS Reset for Neural Forge One Landing System */
/* Eliminates default browser styles for consistent terminal aesthetic */

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles */
ol, ul {
    list-style: none;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove button styles */
button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

/* Remove input styles */
input, textarea, select {
    font: inherit;
    border: none;
    outline: none;
}

/* Remove image borders and spacing */
img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

/* Remove table spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default heading styles */
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

/* Remove default paragraph spacing */
p {
    margin: 0;
}

/* Remove default pre/code styles */
pre, code {
    font-family: inherit;
}

/* Ensure no rounded corners anywhere */
*, *::before, *::after {
    border-radius: 0 !important;
}
