:root {
      --bg: #080808;
      --bg-soft: #101010;
      --text: #f3f0eb;
      --muted: #85817b;
      --orange: #ff5a1f;
      --orange-bright: #ff7a3d;
      --line: rgba(255,255,255,.09);
      --glow: rgba(255, 90, 31, .25);
}

html {
    scroll-behavior: smooth;
}

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

#page-wrapper
{
    background: 
        radial-gradient(circle at 70% 20%, rgba(255,90,31, .08), transparent 28%),
        radial-gradient(circle at 15% 80%, rgba(255, 90, 31, .05), transparent 25%),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, --apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
    display: block;
    width: 100vw;
    height: 100vh;
    display:flex;
    justify-content: center;
    align-items: center;
}

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


h1 .accent {
    color: var(--orange);
    text-shadow: 0 0 50px rgba(255,90,31,.25);
}

h1 {
    max-width: 900px;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: .82;
    letter-spacing: -.075em;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

h1 .outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,.28);
}
