@font-face
{
    font-family: 'Inter';
    src: url('/Inter/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face
{
    font-family: 'Inter';
    src: url('/Inter/InterVariable-Italic.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root
{
    --font-family: 'Inter', 'Noto Sans', 'Open Sans', Helvetica, Arial, sans-serif;
    --root-bg: #faf8f5;
    --root-text: #1f3d2b;
    --header-bg: #1f3d2b;
    --header-text: #faf8f5;
    --menubar-bg: #529282;
    --menubar-text: #faf8f5;
    --menubar-active: #1f3d2b;
    --menubar-active-text: #faf8f5;
    --menubar-inactive-tab: #a8c8c0;
    --menubar-inactive-tab-text: #faf8f5;
    --primary-base: #529282;
    --primary-hover: #3e7466;
    --primary-active: #1f3d2b;
    --primary-focus: #1f3d2b;
    --primary-text: #ffffff;
    --secondary-base: #3b82f6;
    --secondary-hover: #2563eb;
    --secondary-active: #1d4ed8;
    --secondary-focus: #1e40af;
    --secondary-text-hover: #faf8f5;
    --btn-secondary-base: #5f6f7a;
    --btn-secondary-hover: #4a5960;
    --btn-secondary-active: #3a464d;
    --btn-secondary-focus: #2e383e;
    --btn-secondary-text-hover: #faf8f5;
    --gray-base: #f6f1e8;
    --gray-hover: #e8e0d3;
    --gray-active: #dbd2c4;
    --gray-focus: #cec4b5;
    --gray-text: #1f3d2b;
    --icon-tint: #1f3d2b;
    --icon-wrapper: #c2a24f;
    --icon-wrapper-tint-hover: #a88b3e;
    --icon-wrapper-tint-active: #937a36;
    --icon-wrapper-tint-focus: #7e692e;
    --icon-wrapper-tint: #faf8f5;
    --table-row-even: #f6f1e8;
    --table-row-odd: #faf8f5;
    --table-row-selected: #529282;
    --table-row-hover: #c2a24f;
    --table-row-text: #1f3d2b;
    --table-row-text-selected: #faf8f5;
    --table-row-text-hovered: #1f3d2b;
    --alert-success: #529282;
    --alert-danger: #c70000;
    --alert-warning: #ff751f;
    --alert-info: #8b5cf6;
    --box-bg: #ffffff;
    --editor-bg: #ffffff;
    --editor-text: #1f3d2b;
    --editor-selection: #529282;
    --editor-line-number: #a8c8c0;
    --editor-cursor: #1f3d2b;
    --editor-whitespace: #dbd2c4;
    --editor-bracket-match: #529282;
}

*, *::before, *::after
{
    box-sizing: border-box;
}

html, body
{
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: var(--font-family);
    background-color: var(--root-bg);
    color: var(--root-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.landing-page
{
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: var(--root-bg);
    padding: 0 1rem;
}

.landing-hero
{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    padding: 3rem 1rem 2rem;
    text-align: center;
}

.landing-logo
{
    width: min(320px, 70vw);
    height: auto;
    display: block;
}

.landing-tagline
{
    font-family: var(--font-family);
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--root-text);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.landing-eap-link
{
    font-family: var(--font-family);
    font-size: clamp(0.95rem, 1.8vw, 1.125rem);
    font-weight: 400;
    color: var(--primary-base);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;

    &:hover
    {
        color: var(--primary-hover);
    }
}

.landing-footer
{
    padding: 1.5rem 1rem 2rem;
    text-align: center;
}

.landing-investor-link
{
    font-family: var(--font-family);
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--root-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: 0.65;
    transition: opacity 0.15s ease;

    &:hover
    {
        opacity: 1;
    }
}
