
 /*$$$$$$$                           
|__  $$__/                           
   | $$  /$$$$$$   /$$$$$$   /$$$$$$$
   | $$ |____  $$ /$$__  $$ /$$_____/
   | $$  /$$$$$$$| $$  \ $$|  $$$$$$ 
   | $$ /$$__  $$| $$  | $$ \____  $$
   | $$|  $$$$$$$|  $$$$$$$ /$$$$$$$/
   |__/ \_______/ \____  $$|_______/ 
                  /$$  \ $$          
                 |  $$$$$$/          
                  \_____*/           

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--page_background);
    font-size: 16px;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;

    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    color: var(--primary_text);
    background:
        linear-gradient(rgba(114, 224, 106, 0.018) 1px, transparent 1px),
        var(--page_background);
    background-size: 100% 4px;

    font-family: var(--font_body);
    font-size: 1rem;
    line-height: 1.65;
}

img,
picture,
video,
iframe {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--terminal_green);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
    color: var(--terminal_green_bright);
}

a:visited {
    color: var(--terminal_green);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font_display);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

button,
code {
    font-family: "OCR B", "Azeret Mono", monospace;
    font-weight: 10;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--terminal_green_bright);
    line-height: 1.2;
}

h1 {
    font-size: 32px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

h3 {
    margin-bottom: 0;
    font-size: 0.9375rem;
    font-weight: 600;
}

h4 {
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

ul li {
    position: relative;
    padding-left: 0.85rem;
}

ul li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--terminal_green);
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    background: var(--terminal_background);
    font-size: 0.9375rem;
}

th,
td {
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

thead th {
    color: var(--terminal_green_bright);
    background: var(--title_bar_background);
    font-family: var(--font_display);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.table_scroll {
    width: 100%;
    overflow-x: auto;
}

tbody th {
    color: var(--primary_text);
    font-weight: 600;
    background: rgba(114, 224, 106, 0.04);
}

.pricing_table {
    width: 100%;
    table-layout: fixed;
    border: 1px solid var(--terminal_green_bright);
}

.pricing_table th,
.pricing_table td {
    border: 1px solid var(--terminal_green);
}

.pricing_table th:first-child,
.pricing_table td:first-child {
    width: 40%;
}

.pricing_table th:nth-child(2),
.pricing_table td:nth-child(2),
.pricing_table th:nth-child(3),
.pricing_table td:nth-child(3),
.pricing_table th:nth-child(4),
.pricing_table td:nth-child(4) {
    width: 20%;
}

@media (max-width: 760px) {
    body {
        font-size: 0.95rem;
    }

    h1 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 0.9rem;
    }

    th,
    td {
        padding: 0.55rem 0.6rem;
        font-size: 0.875rem;
    }
}

input,
select,
textarea {

    font-family: "OCR B", "Azeret Mono", monospace;
    font-weight: 10;
    letter-spacing: 0.05em;

    width: 100%;
    max-width: 28rem;
    margin-top: 0.35rem;
    padding: 0.75rem 0.875rem;

    color: var(--primary_text);
    background: var(--terminal_background);

    border: 1px solid var(--border);
    border-radius: 0;

    font-size: 0.9375rem;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--focus_color);
    outline: 1px solid var(--focus_color);
    outline-offset: 2px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--primary_text);
    -webkit-box-shadow:
        0 0 0 1000px var(--terminal_background) inset;
    caret-color: var(--terminal_green);
}

button,
input[type="submit"] {
    padding: 0.7rem 1rem;

    color: var(--page_background);
    background: var(--terminal_green);

    border: 1px solid var(--terminal_green_bright);
    border-radius: 0;

    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
    background: var(--terminal_green_bright);
}

button:focus-visible,
input[type="submit"]:focus-visible {
    outline: 2px solid var(--focus_color);
    outline-offset: 3px;
}

code {
    color: var(--terminal_green_bright);
    font-weight: 600;
}

footer{
    margin-top: auto;
    padding: 25px;
    width: 100%;
    background-color: var(--title_bar_background);
}

.footer_nav{
    display: flex;
    justify-content: space-between;
    max-width: 1024px;
    margin: 0 auto;
}

.footer_nav_column{
    width: 30%;
}

.footer_nav_column .nav_item{
    color: var(--primary_text);
}

.footer_copyright{
    margin-top: 25px;
    margin-bottom: 0;
    text-align: center;
}