:root {
    --primary: #0066FF;
    --primary-hover: #0052cc;
    --text-main: #0B1120;
    --text-secondary: #475569;
    --bg-color: #FFFFFF;
    --bg-accent: #F4F8FF;
    --border-color: rgba(226, 232, 240, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Layer */
.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

/* Ambient Organic Backgrounds */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
}
.blob-1 {
    top: -5%;
    right: 0%;
    width: 750px;
    height: 750px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 194, 255, 0.05));
}
.blob-2 {
    bottom: -5%;
    left: -10%;
    width: 650px;
    height: 650px;
    background: rgba(0, 102, 255, 0.06);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Global Architectural Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1024px) {
    .container { padding: 0 24px; }
}
@media (max-width: 640px) {
    .container { padding: 0 16px; }
}

