

:root {

    --hd-font: var(--tlc-root-font-family, 'Inter', sans-serif);

}

.h1 {

    font-family: var(--hd-font);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;

}

.h2 {

    font-family: var(--hd-font);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;

}

.h3 {

    font-family: var(--hd-font);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;

}

:root {

    --header-nav-size: 21px;

}

header {

    flex: 0 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: calc(env(safe-area-inset-top, 0px) + 14px) 18px 12px;
    background: var(--rich-black);
    color: #fff;
    z-index: 1100;

}

header.header-hidden {

    transform: translateY(calc(-1 * var(--header-height)));

}

header.header-scrolled {

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);

}

header .header-container {

    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;

}

header .side {

    min-width: 0;
    display: flex;
    align-items: center;

}

header .header-left {

    flex: 0 1 24%;
    justify-content: flex-start;

}

header .header-center {

    flex: 0 1 52%;
    justify-content: center;
    padding: 0 6px;

}

header .header-right {

    flex: 0 1 24%;
    justify-content: flex-end;

}

header .title,
header .nav-label {

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.1;
    text-decoration: none;
    color: #000000;

}

header .title {

    font-size: calc(var(--header-nav-size) + 1px);
    font-weight: 700;
    cursor: pointer;

}

header .nav-label {

    font-size: var(--header-nav-size);
    font-weight: 600;
    cursor: pointer;

}

header .right-cluster {

    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 100%;

}

header .avatar-btn {

    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f2f2f2 0%, #dcdcdc 100%);
    color: #111;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    flex: 0 0 auto;

}

header h1 {

    margin: 0;
    padding: 0;
    line-height: 1.05;
    white-space: nowrap;

}

header h1 a.brand-link {

    color: #fff;
    text-decoration: none;

}

header h1 a.brand-link:hover {

    color: #fff;
    text-decoration: none;

}

header h1 .brand-link-space {

    opacity: 1;

}

header nav {

    margin-top: 0;

}

.header-left {

    display: flex;
    align-items: center;

}

.header-nav ul {

    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;

}

header nav a:last-child {

    margin-right: 5px;

}

header nav a {

    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    margin-right: 0.4rem;
    transition: color 0.3s ease;

}

.header nav a:hover {

    color: var(--electric-blue);

}

a.card-link {

    text-decoration: none;
    outline: none;

}

.contact-header {

    text-align: center;

}

.header-container {

    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;

}

.page-header-tight,
.page-header-tighter {

    margin: 0.5rem auto 0 auto;
    padding-top: 0;
    text-align: center;
    width: 100%;
    max-width: none;

}

.page-header-tight h1,
.page-header-tight h2 {

    margin-top: 1rem;

}

.page-header-tighter h1,
.page-header-tighter h2 {

    margin-top: 2rem;

}

main > section.page-header-tight:first-child,
main > section.page-header-tighter:first-child {

    margin-top: 0;
    padding-top: 0;

}

main > section.page-header-tight:first-child h1,
main > section.page-header-tighter:first-child h1 {

    margin-top: 0;

}

main > h2:first-child,
main > section.page-header-tight:first-child h2,
main > section.page-header-tighter:first-child h2 {

    background-color: #fff;
    box-shadow: 0 0 0 100vmax #fff;
    clip-path: inset(0 -100vmax);

}

.page-shell > header,
.page-shell > #global-banner-stack,
.page-shell > .page-scroll-container,
.page-shell > footer {

    position: absolute;
    left: 0;
    right: 0;

}

.page-shell > header {

    top: 0;
    z-index: 30;
    transform: translateY(0);

}

.page-shell > header.header-hidden {

    transform: translateY(calc(-1 * var(--header-height)));

}

.page-shell > #global-banner-stack {

    top: var(--header-height, 0px);
    z-index: 20;
    transform: translateY(var(--header-offset, 0px));

}

.page-shell > .page-scroll-container {

    top: calc(var(--header-height) + var(--banner-stack-height));
    bottom: calc(var(--footer-height) + var(--header-offset, 0px));
    z-index: 10;
    transform: translateY(var(--header-offset, 0px));

}

.page-shell > footer {

    bottom: 0;
    z-index: 30;
    transform: none;
    -webkit-transform: none;

}

.construction-shell header > h1,
.systems-shell header > h1,
.construction-shell header > .site-header-heading,
.systems-shell header > .site-header-heading,
header.division-header > h1,
header.division-header > .site-header-heading {

    margin: 0;
    padding: 0;
    line-height: 1.05;

}

.construction-shell header > nav,
.systems-shell header > nav {

    margin-top: 0;
    margin-bottom: 0;

}

header.division-header {

    justify-content: flex-start;

}

header.division-header > h1,
header.division-header > .site-header-heading {

    font-size: 2em;
    font-weight: 700;

}

.auth-card-header {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;

}

.dashboard-header {

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;

}

.dashboard-header h1 {

    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--postgres-dashboard-accent-blue), var(--postgres-dashboard-accent-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.dashboard-container .header-button {

    background: var(--postgres-dashboard-accent-purple);
    color: var(--postgres-dashboard-text-primary);
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: opacity 0.3s ease;

}

.plan-header {

    text-align: center;
    margin-bottom: 10px;

}

.plan-header h1 {

    margin: 0 0 6px;
    font-size: clamp(1.2rem, 1.75vw, 1.55rem);
    color: #0d0d0d !important;

}

.plan-header p {

    margin: 0;
    font-size: 1.06rem;
    line-height: 1.55;

}
