/* ============================================
   BASE STYLES - RESET & TYPOGRAPHY
   ============================================ */

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

/* Typography & Body */
body {
    font-family: 'Inter', sans-serif;
    line-height: var(--line-height-normal);
    color: var(--text-color);
    background-color: var(--light-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Links */
a {
    text-decoration: none;
    color: var(--accent-color);
}

/* Lists */
ul {
    list-style: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* ---- Section header pattern ---- */
/* Small all-caps label above section title */
.section-label {
    display: inline-block;
    font-size: var(--font-section-label);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 16px;
}

/* Dark section variant — label stays lime */
.section-dark .section-label {
    color: var(--accent-color);
}

/* Light section variant */
.section-light .section-label {
    color: var(--accent-color);
}

.section-title {
    font-size: var(--font-h2);
    font-weight: 800;
    line-height: var(--line-height-tight);
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.section-title--dark {
    color: var(--text-on-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-subtitle--dark {
    color: var(--text-on-dark-muted);
}

.section-header {
    margin-bottom: 60px;
}

.section-header--centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Dark section base */
.section-dark {
    background-color: var(--dark-bg);
    color: var(--text-on-dark);
}

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

/* Light alt section base */
.section-alt {
    background-color: var(--light-alt);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.coming-soon {
    position: relative;
}

.coming-soon:after {
    content: 'Coming Soon';
    position: absolute;
    top: -20px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-medium);
    letter-spacing: 0.05em;
}
