:root {
    --bg-color: #E6E6E6;
    --text-main: #111111;
    --text-muted: #333333;
    --btn-bg: #000000;
    --footer-bg: #1B1B1B;
    --footer-text: #EAEAEA;
    --footer-border: #FFF;
    --border-dark: #111111;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
}

/* === Scroll Reveal System === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === Section Divider === */
.section-divider {
    border: none;
    height: 1px;
    max-width: 600px;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(0,0,0,0.12) 0%, transparent 70%);
}

.container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 480px), (max-width: 950px) and (max-height: 600px) and (orientation: landscape) {
    .container {
        padding: 0 10px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}
