﻿/* --------- Global --------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
        Arial, sans-serif;
    background-color: #fafafa;      /* light page background */
    color: #111827;
    line-height: 1.6;
}

/* --------- Top black bar --------- */

.topbar {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    background-color: #000000;
    color: #ffffff;
    font-size: 13px;
}

.topbar-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    background: #0ea5e9;
    border-radius: 2px;
}

/* "AI-POWERED INVESTMENT OPPORTUNITIES" */
.topbar-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 12px;
    white-space: nowrap;
}

.topbar-schedule {
    color: #ffffff;
    text-decoration: underline;
    margin-right: 16px;
    white-space: nowrap;
}

.topbar-schedule:hover {
    text-decoration: none;
}

.topbar-spacer {
    flex: 1 1 auto;
}

/* User / Password / Login strip */

.topbar-label {
    font-size: 13px;
    color: #e5e7eb;
    margin-right: 4px;
    white-space: nowrap;
}

.topbar-input {
    height: 26px;
    min-width: 190px;
    padding: 2px 8px;
    border-radius: 0;                     /* square corners like your screenshot */
    border: 1px solid #606666;            /* light grey border so it’s visible */
    background-color: #000000;            /* black fill */
    color: #f9fafb;
    font-size: 13px;
    margin-right: 8px;
}

.topbar-input::placeholder {
    color: #6b7280;
}

.topbar-input:focus {
    outline: none;
    border-color: #22c55e;
}

/* Green login button */

.topbar-button {
    height: 28px;
    padding: 0 14px;
    border-radius: 2px;
    border: 1px solid #16a34a;
    background-color: #16a34a;
    color: #f9fafb;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.topbar-button:hover {
    background-color: #22c55e;
}

.topbar-button:active {
    transform: translateY(1px);
}

.login-error {
    font-size: 12px;
    color: #f97373;
    margin-left: 8px;
}

/* --------- Main marketing content --------- */

main,
.page-body {
    max-width: 1100px;
    margin: 24px auto 40px auto;
    padding: 0 24px;
}

/* Centered H1 like in the screenshot */
h1 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 24px 0 24px 0;
    color: #111827;
}

/* Section headings (Core Capabilities, Client Access, etc.) */
h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 8px 0;
    color: #374151;
}

/* Body text & lists stay close to browser defaults, just cleaned up a bit */
p {
    font-size: 14px;
    margin: 8px 0;
    color: #111827;
}

ul {
    margin: 8px 0 8px 0;
    padding-left: 22px;
}

li {
    font-size: 14px;
    color: #111827;
}

/* Links in the body copy (blue, underlined on hover like your screenshot) */
a {
    color: #1d4ed8;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}
