diff --git a/content/features.html b/content/features.html
index 5a7ab5098cdbdd9673321b4034f6db85718c551e..3a592ab2cb87ad753cb2030fd331108a6ad347e8 100644
--- a/content/features.html
+++ b/content/features.html
@@ -2,61 +2,29 @@
 
 <div class="row">
   <div class="col-lg-4 col-md-6">
-    <h2>Robust</h2>
-    ANSI. Old.
-    Blah blah
-    Blah
-    asdfa
-    asdfasdf
-    asdf
-    asdf
-    asf
-
+    <h2>Interactive development</h2>
+    <p>Development in Common Lisp is interactive. There's no separate compile/run/debug cycle. Instead of that, the program is developed while it runs. Compilation is incremental, and functions can be created and updated on the fly. As the program is running, all objects are available and can be inspected all the time. This is much more than a simple REPL; the whole environment, from the IDE to the language is prepared for this type of development.</p>
   </div>
   <div class="col-lg-4 col-md-6">
-    <h2>Interactive</h2>
-    Unique.
-    Image.
-    SLIME.
-    Remote debugging.
-    asdfasdf
-    as
-    fas
-    df
-    asd
-    fas
-    f
-    asd
+    <h2>Robust</h2>
+    <p>Common Lisp is a carefully designed language with a long history. It was standarized in 1980 and the language has not changed since but it keeps up with the times thanks to its modability and metaprogramming capabilities. This makes it very likely that your program will continue to run unmodified for several years.</p>
   </div>
+
   <div class="col-lg-4 col-md-6">
     <h2>Expressive</h2>
-    Metaprogramming.
-    DSLs
-    Macros.
-    Declarative.
-    a
-    asdf
-    asdfa
-    sdfa
-    f
+    <p>Being a meta language, Lisp approach to problem solving is to define idioms (small Domain Specific Languages) as close to the problem domain as possible. This results in very succint and declarative solutions, at a level which is difficult to achieve in other programming languages. CL flexibility also facilitates a bottom-up programming approach.</p>
   </div>
   <div class="col-lg-4 col-md-6">
     <h2>Fast</h2>
-    Compiled. Assembler. Extensible.
-    asdfa
-    sdfa
-    sdf
-    asd
-    f
+    <p>Most Common Lisp compilers produce fast code. Programs can be type annotated and the compilers can apply optimizations based on them. CL also supports different levels of debugging, safety and speed. Performance is usually better than interpreted languages like Python and Ruby, and close to C in some cases.</p>
   </div>
   <div class="col-lg-4 col-md-6">
     <h2>Uniform</h2>
-    SExpressions.
-    Everything expressions.
-    Everything is a list.
+    <p>Uniformity is present in both syntax and data structures. Everything being an S-expression, there are not many syntax oddities to think about. And Lisp main data structure is the list.</p>
   </div>
   <div class="col-lg-4 col-md-6">
     <h2>Multiparadigm</h2>
+    <p>Lisp implements and can adapt to several programming paradigms. It supports first class functions, closures and destructuring (among other things), commonly present in functional languages. And comes with CLOS, one of the most powerful object systems in existence. Support for other paradigms can often be implemented as a library as has been done for the logic paradigm.</p>
   </div>
   <div class="col-lg-4 col-md-6">
     <h2>Innovative / Advanced </h2>