/* VRCORE Careers - Base Styles */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-regular);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--text-light);
}

h1 {
    font-size: var(--text-5xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--text-4xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

p {
    color: var(--text-subtle);
    max-width: 65ch;
}

a {
    color: var(--cta-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--cta-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container--wide {
    max-width: var(--container-wide);
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* Sections */
section {
    padding: var(--space-24) 0;
}

.section--dark {
    background: var(--bg-dark);
    color: var(--text-light);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--text-light);
}

.section--dark p,
.section--dark .section-header__description {
    color: var(--text-subtle);
}

.section--light {
    background: var(--bg-white);
    color: var(--text-primary);
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
    color: var(--text-primary);
}

.section--light p,
.section--light .section-header__description {
    color: var(--accent-slate);
}

.section--light .pillar__description,
.section--light .step__description,
.section--light .benefit__text {
    color: var(--accent-steel);
}

.section--light .step__number {
    background: var(--bg-white);
}

.section--light .card {
    background: var(--bg-light);
    border-color: rgba(0, 0, 0, 0.08);
}

.section--light .card:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.section--light .card--placeholder {
    background: var(--bg-light);
    border-color: rgba(0, 0, 0, 0.15);
}

.section--light .benefit {
    background: var(--bg-light);
    border-color: rgba(0, 0, 0, 0.05);
}

.section--gradient {
    background: var(--gradient-dark);
}

/* Text utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-light {
    color: var(--text-light);
}

.text-muted {
    color: var(--text-muted);
}

.text-subtle {
    color: var(--text-subtle);
}

.text-primary-color {
    color: var(--cta-primary);
}

/* Spacing utilities */
.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mt-12 {
    margin-top: var(--space-12);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.mb-12 {
    margin-bottom: var(--space-12);
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: var(--text-3xl);
    }

    h2 {
        font-size: var(--text-2xl);
    }

    h3 {
        font-size: var(--text-xl);
    }

    section {
        padding: var(--space-16) 0;
    }
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--cta-primary);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--primary-blue);
    color: var(--text-light);
}