:root{
  --black:#0D0D0D;
  --red:#E63946;
  --dark-red:#9E1B25;
  --orange:#FF7A00;
  --yellow:#FFD166;
  --white:#FFFFFF;
  --text:#F5F5F5;
  --muted:#B7B7B7;
  --surface:#171717;
  --surface-2:#1F1F1F;
  --border:rgba(255,255,255,.08);

  --font-heading:"Anton", sans-serif;
  --font-body:"Inter", sans-serif;

  --space-1:8px;
  --space-2:16px;
  --space-3:24px;
  --space-4:32px;
  --space-5:48px;
  --space-6:64px;

  --radius-sm:12px;
  --radius-md:18px;
  --shadow:0 18px 40px rgba(0,0,0,.28);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:var(--font-body);
  background:
    url("../assets/images/ui/bg-dark-texture.webp") center top / cover repeat,
    var(--black);
  color:var(--text);
  line-height:1.6;
  position:relative;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:url("../assets/images/ui/bg-flame.webp") center top / cover no-repeat;
  opacity:.07;
  mix-blend-mode:screen;
  pointer-events:none;
  z-index:-1;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

h1,h2,h3,h4,p{margin:0 0 var(--space-3)}
h1,h2,h3,h4{
  font-family:var(--font-heading);
  text-transform:uppercase;
  line-height:1;
  letter-spacing:.02em;
}
h1{font-size:clamp(3rem,8vw,5.5rem)}
h2{font-size:clamp(2rem,4.8vw,3.25rem)}
h3{font-size:1.4rem}
p{color:var(--muted)}
