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

:root {
    --void: #07070b;
    --slab: #0d0d14;
    --plate: #12121b;
    --rivet: #1a1a28;
    --slag: #252535;
    --ash: #6a6a7e;
    --steel: #9a9ab0;
    --light: #d4d4e0;
    --white: #eeeef2;
    --molten: #e87a12;
    --glow: #f5a030;
    --ember: rgba(232, 122, 18, 0.12);
    --scorched: rgba(232, 122, 18, 0.04);
    --blue-steel: #1e2d3d;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--void);
    color: var(--steel);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

.grain {
    position: fixed; inset: 0; z-index: 10000; pointer-events: none;
    opacity: 0.03;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; font-size: 13px; font-weight: 600;
    font-family: 'Chakra Petch', sans-serif;
    text-transform: uppercase; letter-spacing: 2px;
    border: none; border-radius: 2px; cursor: pointer;
    transition: all 0.3s ease;
    position: relative; overflow: hidden;
}

.btn-molten {
    background: var(--molten); color: var(--void);
    box-shadow: 0 0 0 0 rgba(232, 122, 18, 0);
}
.btn-molten:hover {
    background: var(--glow);
    box-shadow: 0 4px 30px rgba(232, 122, 18, 0.4), 0 0 60px rgba(232, 122, 18, 0.15);
    transform: translateY(-2px);
}

.btn-steel {
    background: transparent; color: var(--steel);
    border: 1px solid var(--rivet);
}
.btn-steel:hover {
    border-color: var(--ash);
    color: var(--white);
    transform: translateY(-2px);
}

.section { padding: 110px 0; position: relative; }
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--molten); margin-bottom: 16px;
}
.sec-label i { font-size: 10px; }
.sec-head h2 {
    font-size: clamp(34px, 4.5vw, 58px);
    letter-spacing: -1px;
}

.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--slag); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ash); }
html { scrollbar-color: var(--slag) var(--void); scrollbar-width: thin; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--slab) inset;
    -webkit-text-fill-color: var(--light);
    caret-color: var(--light);
    transition: background-color 5000s ease-in-out 0s;
}
