*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: -0.02em;
}

.page {
    display: grid;
    flex-direction: row;
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #17171c;
    padding: 48px 56px;
    gap:25px;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f8f8fb;
    padding: 48px 48px 48px 40px;
    border-left: 3px solid #22222a;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: #ff5e00;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.brand-slogan {
    font-size: 0.85rem;
    color: #ffffff60;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-title span {
    color: #ff5e00;
}

.hero-desc {
    font-size: 1rem;
    color: #ffffff80;
    line-height: 1.7;
    max-width: 420px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 12px;
    background-color: #ff5e00;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #e05301;
}

.footer-line {
    font-size: 0.75rem;
    color: #ffffff30;
    margin-top: auto;
}

.tabHeader {
    display: grid;
    grid-template-columns: 4fr 1fr; 
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 25px;
}
.tabHeader-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff5e00;
}
.tabHeader-actions {
    display: flex;
    flex-direction: row; 
    justify-content: flex-end;
    gap: 5px;              
    align-items: center;
}

.tabContainer{
    display: flex;
    flex-direction: column;
    height: 90%;
    gap: 16px;
}