@import url("clean-surfaces.css");

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #0a0d12;

    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body::before {
    content: none;
}

body::after {
    content: none;
}
.font-display {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.02em;
}

img,
video,
iframe {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: 0;
}

p {
    color: var(--text-secondary);
    line-height: 1.75;
}

section {
    padding: clamp(64px, 8vw, 96px) 0;
    position: relative;
}

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

.page-shell {
    padding-top: 18px;
}

.section-band {
    background: rgba(var(--color-panel-rgb), 0.72);
    border-block: 1px solid rgba(var(--color-border-rgb), 0.92);
}

.section-soft {
    background: rgba(var(--color-text-primary-rgb), 0.018);
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent-alt);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: 0.8;
}

.section-title {
    margin: 0.9rem 0 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-subtitle {
    max-width: 680px;
    margin: 1rem 0 0;
    color: var(--text-secondary);
}

.text-center .section-subtitle,
.section-header.text-center .section-subtitle {
    margin-inline: auto;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .page-shell {
        padding-top: 8px;
    }
}
