@import url("../vendor/inter/5.3.0/inter.css");

:root {
    --whatever-primary: oklch(0.548 0.216 263.4);
    --whatever-primary-dark: oklch(0.49 0.21 263.4);
    --whatever-primary-soft: oklch(0.955 0.026 262);
    --whatever-accent-ink: oklch(0.42 0.16 263);
    --whatever-ink: oklch(0.24 0.033 259);
    --whatever-muted: oklch(0.522 0.028 257);
    --whatever-surface-muted: oklch(0.972 0.004 250);
    --whatever-border: oklch(0.918 0.008 255);
    --whatever-border-strong: oklch(0.855 0.011 255);
    --whatever-input: oklch(0.9 0.009 255);
}

.whatever-navbar,
.whatever-navbar * {
    box-sizing: border-box;
}

.whatever-navbar {
    -webkit-font-smoothing: antialiased;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid var(--whatever-border);
    color: var(--whatever-ink);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-feature-settings: "cv02", "cv03", "cv04";
    position: relative;
    width: 100%;
    z-index: 70;
}

.whatever-navbar--horizontal-lock {
    left: 0;
    max-width: 100%;
    position: sticky;
    width: 100%;
}

.whatever-navbar.is-overlay-active {
    z-index: 1000;
}

.whatever-navbar__inner {
    align-items: center;
    display: flex;
    gap: 8px;
    height: 64px;
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 12px;
}

.whatever-brand {
    align-items: center;
    color: var(--whatever-ink) !important;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 8px;
    text-decoration: none !important;
}

.whatever-brand__logo {
    align-items: flex-start;
    background: #35a8db;
    border-radius: 6px;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    overflow: hidden;
    width: 36px;
}

.whatever-brand__logo img {
    height: 38px;
    max-width: none;
    object-fit: cover;
    object-position: center 15%;
    transform: scale(1.55);
    transform-origin: center 26%;
    width: 68px;
}

.whatever-brand__copy {
    display: none;
    flex-direction: column;
    line-height: 1.12;
}

.whatever-brand__copy strong {
    color: var(--whatever-ink);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.01em;
}

.whatever-brand__copy small {
    color: var(--whatever-muted);
    font-size: 11px;
    font-weight: 400;
    margin-top: 1px;
}

.whatever-stock-search {
    display: none;
    flex: 0 0 224px;
    margin: 0;
    min-width: 0;
    position: relative;
}

.whatever-stock-search__mobile-head {
    display: none;
}

.whatever-stock-search__field {
    align-items: center;
    background: #fff;
    border: 1px solid var(--whatever-input);
    border-radius: 6px;
    cursor: text;
    display: flex;
    gap: 8px;
    height: 40px;
    margin: 0;
    padding: 0 12px;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.whatever-stock-search__field:hover {
    background: var(--whatever-surface-muted);
    border-color: var(--whatever-border-strong);
}

.whatever-stock-search__field:focus-within {
    background: #fff;
    border-color: var(--whatever-primary);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--whatever-primary) 12%, transparent);
}

.whatever-stock-search__field > svg,
.whatever-mobile-search-toggle svg,
.whatever-login svg,
.whatever-mobile-toggle svg {
    fill: none;
    flex: 0 0 auto;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 18px;
}

.whatever-stock-search__field > svg {
    color: var(--whatever-muted);
}

.whatever-stock-search__field input {
    -webkit-appearance: none;
    appearance: none;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--whatever-ink) !important;
    flex: 1 1 auto;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    height: 38px;
    line-height: 38px;
    min-width: 0;
    outline: none !important;
    padding: 0 !important;
    text-transform: uppercase;
    width: 100%;
}

.whatever-stock-search__field input::placeholder {
    color: var(--whatever-muted);
    font-weight: 400;
    opacity: 1;
    text-transform: none;
}

.whatever-stock-search__field input::-webkit-search-cancel-button {
    display: none;
}

.whatever-stock-search__field kbd {
    background: var(--whatever-surface-muted);
    border: 1px solid var(--whatever-border);
    border-radius: 4px;
    color: var(--whatever-muted);
    display: none;
    flex: 0 0 auto;
    font-family: inherit;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    max-width: 48px;
    overflow: hidden;
    padding: 3px 6px;
    text-overflow: ellipsis;
}

.whatever-stock-search__popover {
    background: #fff;
    border: 1px solid var(--whatever-border);
    border-radius: 8px;
    box-shadow: 0 4px 16px -6px rgba(15, 23, 42, .22);
    left: 0;
    margin-top: 6px;
    max-height: min(420px, 65vh);
    min-width: 360px;
    overflow: auto;
    padding: 6px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 100;
}

.whatever-stock-search__status {
    color: var(--whatever-muted);
    font-size: 12px;
    padding: 12px;
}

.whatever-stock-search__popover ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.whatever-stock-search__popover li {
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    display: grid;
    gap: 2px 10px;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    margin: 0;
    min-height: 48px;
    padding: 6px 8px;
}

.whatever-stock-search__popover li:hover,
.whatever-stock-search__popover li.is-selected {
    background: var(--whatever-primary-soft);
}

.whatever-stock-search__symbol {
    color: var(--whatever-ink);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.whatever-stock-search__name {
    color: var(--whatever-muted);
    font-size: 12px;
    font-weight: 400;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whatever-stock-search__industry {
    background: var(--whatever-surface-muted);
    border-radius: 999px;
    color: var(--whatever-muted);
    font-size: 10px;
    font-weight: 500;
    padding: 3px 6px;
}

.whatever-nav-links {
    align-items: center;
    display: none;
    gap: 2px;
    margin-left: auto;
    min-width: 0;
}

.whatever-nav-links > a,
.whatever-nav-links > .whatever-nav-menu > button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--whatever-muted);
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    gap: 4px;
    justify-content: center;
    line-height: 20px;
    min-height: 36px;
    padding: 8px 12px;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
}

.whatever-nav-links > a:hover,
.whatever-nav-links > a:focus,
.whatever-nav-links > .whatever-nav-menu > button:hover,
.whatever-nav-links > .whatever-nav-menu > button:focus {
    background: var(--whatever-surface-muted);
    color: var(--whatever-ink);
    outline: none;
}

.whatever-nav-links > a.is-active,
.whatever-nav-links > .whatever-nav-menu > button.is-active {
    background: var(--whatever-primary-soft);
    color: var(--whatever-accent-ink);
}

.whatever-nav-menu,
.whatever-account {
    align-items: center;
    display: flex;
    position: relative;
}

.whatever-nav-menu > button svg {
    fill: none;
    height: 14px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 14px;
}

.whatever-nav-menu__panel,
.whatever-account__panel {
    background: #fff;
    border: 1px solid var(--whatever-border);
    border-radius: 8px;
    box-shadow: 0 12px 30px -10px rgba(15, 23, 42, .25);
    min-width: 190px;
    padding: 6px;
    position: absolute;
    top: calc(100% + 8px);
    z-index: 110;
}

.whatever-nav-menu__panel {
    left: 0;
}

.whatever-account__panel {
    min-width: 240px;
    right: 0;
}

.whatever-nav-menu__panel a,
.whatever-account__panel a {
    align-items: center;
    border-radius: 6px;
    color: var(--whatever-ink) !important;
    display: flex;
    gap: 9px;
    font-size: 14px;
    font-weight: 400;
    min-height: 36px;
    padding: 7px 8px;
    text-decoration: none !important;
}

.whatever-nav-menu__panel a:hover,
.whatever-account__panel a:hover {
    background: var(--whatever-surface-muted);
    color: var(--whatever-ink) !important;
}

.whatever-account__panel a.is-danger {
    color: #dc2626 !important;
}

.whatever-account__panel a svg {
    fill: none;
    flex: 0 0 16px;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 16px;
}

.whatever-account__identity {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 7px 8px;
}

.whatever-account__identity strong {
    color: var(--whatever-ink);
    font-size: 14px;
    font-weight: 600;
}

.whatever-account__identity span {
    color: var(--whatever-muted);
    font-size: 12px;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.whatever-menu-separator {
    background: var(--whatever-border);
    height: 1px;
    margin: 5px 2px;
}

.whatever-menu-label {
    color: var(--whatever-muted);
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 5px 8px 2px;
    text-transform: uppercase;
}

.whatever-navbar__actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    margin-left: auto;
}

.whatever-login {
    align-items: center;
    background: var(--whatever-primary);
    border: 1px solid var(--whatever-primary);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    gap: 7px;
    height: 36px;
    justify-content: center;
    padding: 0 12px;
    white-space: nowrap;
}

.whatever-login svg {
    height: 16px;
    width: 16px;
}

.whatever-login:hover {
    background: var(--whatever-primary-dark);
}

.whatever-account__button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: var(--whatever-accent-ink);
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    height: 40px;
    justify-content: center;
    padding: 0;
    text-transform: uppercase;
    transition: background-color .15s ease;
    width: 40px;
}

.whatever-account__button:hover,
.whatever-account__button[aria-expanded="true"] {
    background: var(--whatever-surface-muted);
}

.whatever-account__button:focus {
    box-shadow: none;
    outline: none;
}

.whatever-account__button:focus-visible {
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--whatever-primary) 16%, transparent);
    outline: none;
}

.whatever-account__button img {
    border-radius: 50%;
    height: 32px;
    object-fit: cover;
    width: 32px;
}

.whatever-account__button > span {
    align-items: center;
    background: var(--whatever-primary-soft);
    border-radius: 50%;
    color: var(--whatever-accent-ink);
    display: inline-flex;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.whatever-mobile-toggle,
.whatever-mobile-search-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--whatever-ink);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 40px;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 40px;
}

.whatever-mobile-toggle:hover,
.whatever-mobile-search-toggle:hover {
    background: var(--whatever-surface-muted);
}

.whatever-mobile-toggle svg,
.whatever-mobile-search-toggle svg {
    height: 20px;
    width: 20px;
}

.whatever-mobile-search-toggle {
    display: inline-flex;
}

.whatever-overlay {
    background: rgba(15, 23, 42, .46);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 118;
}

.whatever-overlay:not([hidden]) {
    animation: whatever-overlay-in .18s ease-out both;
}

.whatever-overlay--search {
    z-index: 128;
}

.whatever-mobile-panel {
    background: #fff;
    box-shadow: 12px 0 32px rgba(15, 23, 42, .16);
    display: none;
    height: 100dvh;
    left: 0;
    max-width: 320px;
    overscroll-behavior: contain;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 86vw;
    z-index: 120;
}

.whatever-mobile-panel:not([hidden]) {
    animation: whatever-drawer-in .22s cubic-bezier(.16, 1, .3, 1) both;
}

.whatever-mobile-panel__header {
    align-items: center;
    border-bottom: 1px solid var(--whatever-border);
    display: flex;
    height: 57px;
    justify-content: space-between;
    padding: 0 16px;
}

.whatever-mobile-panel__header strong {
    color: var(--whatever-ink);
    font-size: 16px;
    font-weight: 600;
}

.whatever-mobile-panel__header button,
.whatever-stock-search__mobile-head button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--whatever-muted);
    cursor: pointer;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    padding: 0;
    width: 36px;
}

.whatever-mobile-panel__header button:hover,
.whatever-stock-search__mobile-head button:hover {
    background: var(--whatever-surface-muted);
    color: var(--whatever-ink);
}

.whatever-mobile-panel__header svg,
.whatever-stock-search__mobile-head svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
    width: 18px;
}

.whatever-mobile-panel nav {
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.whatever-mobile-panel nav a,
.whatever-mobile-panel nav > button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: var(--whatever-ink) !important;
    cursor: pointer;
    display: flex;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
    min-height: 44px;
    padding: 0 12px;
    text-align: left;
    text-decoration: none !important;
    width: 100%;
}

.whatever-mobile-panel nav a > svg,
.whatever-mobile-panel nav > button > svg {
    fill: none;
    flex: 0 0 18px;
    height: 18px;
    stroke: var(--whatever-muted);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    width: 18px;
}

.whatever-mobile-panel nav a:hover,
.whatever-mobile-panel nav a.is-active,
.whatever-mobile-panel nav > button:hover {
    background: var(--whatever-primary-soft);
    color: var(--whatever-accent-ink) !important;
}

.whatever-mobile-panel nav a.is-active > svg {
    stroke: var(--whatever-primary);
}

.whatever-mobile-panel__label {
    color: var(--whatever-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    padding: 12px 12px 4px;
    text-transform: uppercase;
}

[hidden].whatever-stock-search__popover,
[hidden].whatever-nav-menu__panel,
[hidden].whatever-account__panel,
[hidden].whatever-mobile-panel,
[hidden].whatever-overlay {
    display: none !important;
}

body.whatever-overlay-open {
    overflow: hidden !important;
}

body.whatever-overlay-open #main-scroller,
body.whatever-overlay-open > main {
    overflow: hidden !important;
}

@keyframes whatever-overlay-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes whatever-drawer-in {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@media (max-width: 1023.98px) {
    .whatever-mobile-panel:not([hidden]) {
        display: block;
    }
}

@media (min-width: 640px) {
    .whatever-navbar__inner {
        gap: 12px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .whatever-brand__copy {
        display: flex;
    }
}

@media (min-width: 768px) {
    .whatever-stock-search {
        display: block;
    }

    .whatever-mobile-search-toggle {
        display: none;
    }
}

@media (min-width: 1024px) {
    .whatever-navbar__inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .whatever-mobile-toggle {
        display: none;
    }

    .whatever-stock-search {
        flex-basis: 288px;
    }

    .whatever-nav-links {
        display: flex;
    }

    .whatever-navbar__actions {
        margin-left: 8px;
    }

    .whatever-stock-search__field kbd {
        display: inline-block;
    }
}

@media (min-width: 1280px) {
    .whatever-stock-search {
        flex-basis: 320px;
    }
}

@media (max-width: 767.98px) {
    .whatever-stock-search.is-mobile-open {
        background: #fff;
        border: 1px solid var(--whatever-border);
        border-radius: 12px;
        box-shadow: 0 24px 60px rgba(15, 23, 42, .2);
        display: block;
        left: 12px;
        margin: 0 auto;
        max-width: min(520px, calc(100vw - 24px));
        max-width: min(520px, calc(100dvw - 24px));
        padding: 0 14px 14px;
        position: fixed;
        right: 12px;
        top: max(12px, env(safe-area-inset-top, 12px));
        width: auto;
        z-index: 130;
    }

    /* iOS Safari zooms focused form fields whose computed font is below 16px. */
    .whatever-stock-search__field input {
        font-size: 16px;
        touch-action: manipulation;
    }

    .whatever-stock-search__mobile-head {
        align-items: center;
        display: flex;
        height: 54px;
        justify-content: space-between;
    }

    .whatever-stock-search__mobile-head > div {
        display: flex;
        flex-direction: column;
    }

    .whatever-stock-search__mobile-head strong {
        color: var(--whatever-ink);
        font-size: 15px;
        font-weight: 600;
    }

    .whatever-stock-search__mobile-head span {
        color: var(--whatever-muted);
        font-size: 11px;
        margin-top: 2px;
    }

    .whatever-stock-search__popover {
        border: 0;
        border-top: 1px solid var(--whatever-border);
        border-radius: 0;
        box-shadow: none;
        left: auto;
        margin: 10px -6px 0;
        max-height: calc(100dvh - 142px);
        min-width: 0;
        padding: 6px;
        position: static;
        right: auto;
        width: calc(100% + 12px);
    }

    .whatever-stock-search__popover li {
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .whatever-stock-search__industry {
        display: none;
    }
}

@media (max-width: 479.98px) {
    .whatever-login {
        height: 40px;
        padding: 0;
        width: 40px;
    }

    .whatever-login span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatever-navbar * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
