
/* ------------------------------------------- Root */
@keyframes flicker {
    from {
        fill: #477eeb;
    }
    to {
        fill: #ffffff;
    }
}
@keyframes scalestrobe {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes shiftstrobe {
    0% {
        opacity: 0.6;
    }
    25% {
        opacity: 0.8;
        /* transform: translateY(2px); */
    }
    100% {
        opacity: 0.6;
    }
}
:root {
    --base: #1c1f2b;
    --text: #d6d6d6;
    --textdim: #aeaeae;
    --shading: #383a46;
    --highlight: #477eeb;
    --link: #7a8fb8;
    --borders: 1px dashed var(--text);
    --tint-dark: #12151e;
    --fade: 0.5;
    --fade-max: 1;
    --diag-small: repeating-linear-gradient(
    45deg,
    var(--tint-dark),
    var(--tint-dark) 2px,
    #00000000 2px,
    #00000000 4px,
    );
    --diag-large: repeating-linear-gradient(
    45deg,
    var(--tint-dark),
    var(--tint-dark) 1px,
    #00000000 1px,
    #00000000 8px,
    );

}
:root {
    /* Global sizing and gaps */
    --font-size: 18px;
    --sidepadding: 0 1rem;
    --leftpadding: 0 0 0 1rem;
    --corner: 1rem;
    --clipcorner: 
    polygon(100% 0,
    100% calc(100% - var(--corner)), 
    calc(100% - var(--corner)) 100%,
    0 100%,
    0 0);
}
:root {
    /* Font Defaults */
    --headertxt: "itc-avant-garde-gothic-pro", sans-serif;
    --bodytxt: monospace;
}
:root {
  --shadow-color: 216deg 12% 41%;
  --shadow-elevation-low:
    0.2px 0.5px 0.5px hsl(var(--shadow-color) / 0.61),
    0.2px 0.8px 0.7px -2px hsl(var(--shadow-color) / 0.46),
    0.7px 2.2px 2.1px -4px hsl(var(--shadow-color) / 0.3);
  --shadow-elevation-medium:
    0.2px 0.5px 0.5px hsl(var(--shadow-color) / 0.64),
    0.4px 1.2px 1.1px -1.3px hsl(var(--shadow-color) / 0.52),
    1.2px 3.9px 3.7px -2.7px hsl(var(--shadow-color) / 0.4),
    3.4px 10.9px 10.3px -4px hsl(var(--shadow-color) / 0.28);
  --shadow-elevation-high:
    0.2px 0.5px 0.5px hsl(var(--shadow-color) / 0.68),
    0.6px 2px 1.9px -0.7px hsl(var(--shadow-color) / 0.6),
    1.4px 4.5px 4.2px -1.3px hsl(var(--shadow-color) / 0.53),
    3px 9.7px 9.1px -2px hsl(var(--shadow-color) / 0.46),
    5.9px 19.2px 18.1px -2.7px hsl(var(--shadow-color) / 0.39),
    10.7px 34.4px 32.4px -3.3px hsl(var(--shadow-color) / 0.31),
    17.7px 57.1px 53.8px -4px hsl(var(--shadow-color) / 0.24);
}
/* ------------------------------------------- Site */
html {
    font-size: 18px;
}
body {
    -webkit-font-smoothing: antialiased;
    color: var(--text);
    background-color: var(--base);
    margin: 0;
    padding: 0;
    user-select: none;
    /* padding: 0 6vw; */
}
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}
/* --------------------------------------------- FONTS SETTINGS */
h1 {
    font-family: var(--headertxt);
    font-weight: 700;
    font-style: normal;
}
h2 {
    font-family: var(--headertxt);
    font-weight: 700;
    font-style: normal;
}
h3 {
    font-family: var(--headertxt);
    font-weight: 600;
    font-style: normal;
}
h4 {
    font-family: var(--headertxt);
    font-weight: 500;
    font-style: normal;
}
p, ul {
    font-family: var(--bodytxt);
    font-weight: 100;
    font-style: normal;
    letter-spacing: 0.5px;
}
b {
    font-weight: bold;
}

i {
    font-family: var(--headertxt);
    font-weight: 100;
    font-style: italic;
}
a {
    font-family: var(--headertxt);
    color: var(--bodytxt);
    text-decoration: none;
}
li {
    list-style-type: none;
    margin: 0;
}
hr {
    opacity: 0.15;
}
/* --------------------------------------------- Page */
body {
    
}
.main {
    position: relative;
    width: 100vw;
    background-image: linear-gradient(
    340deg,
    hsl(224deg 23% 7%) 0%,
    hsl(224deg 19% 12%) 40%,
    hsl(223deg 19% 18%) 100%
    );
}
.logoBG {
    visibility: hidden;
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-image: url('/images/svg/footer-logo.svg');
    background-size: 110vw;
    background-origin: content-box;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
    padding-top: 50vh;
    padding-left: 15vw;
    opacity: 0.25;
}
.main .center {
    /* background-color: rgb(83, 0, 0); */
    padding: 0 1rem;
    height: 100vh;
    /* width: 100vw; */
}
.welcome {
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr;
    align-items: center;
    margin: 0 auto;
    /* background-color: #2c3146; */
    /* background-color: hsla(228, 17%, 17%, 65%); */
    height: 100vh;
    max-width: 450px;
    box-shadow: 0 0 25px black;
    backdrop-filter: blur(8px);
    background-image: linear-gradient(
    340deg,
    hsla(223, 17%, 16%, 55%) 0%,
    hsla(228, 17%, 22%, 80%) 100%
    );
}
.container {
    /* background-color: #3a3e51; */
    position: relative;
    width: 100%;
    height: max-content;
    padding-bottom: 0.25rem;
    border-radius: 0.2rem;
    box-shadow: 0 0 25px black;
    background-image: linear-gradient(
    340deg,
    hsl(224deg 19% 22%) 0%,
    hsl(223deg 19% 24%) 20%,
    hsl(223deg 19% 25%) 40%,
    hsl(223deg 19% 27%) 60%,
    hsl(223deg 19% 28%) 80%,
    hsl(223, 19%, 29%) 100%,
    #dee3fb 100%
  );
    border: 1px outset #8792ab
}
.container::before {
    content: 'v1.1';
    position: absolute;
    right:0;
    top: 0;
    color: var(--textdim);
    font-family: monospace;
    font-size: 0.8rem;
    margin: 0.5rem;
    opacity: 0.8;
}
.container::after {
    content: url('data:image/svg+xml,<svg id="gripper" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25.41 25.44"><path d="M23.29,0c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM19.06,4.24c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM14.83,8.47c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM23.29,8.47c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM14.83,16.94c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM23.29,16.94c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM10.59,12.7c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM19.06,12.7c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM10.59,21.17c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM19.06,21.17c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM6.35,16.94c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12ZM2.12,21.17c1.17,0,2.12.95,2.12,2.12s-.95,2.12-2.12,2.12-2.12-.95-2.12-2.12.95-2.12,2.12-2.12Z" fill="%23fff"/></svg>');
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0.125rem;
    width: 1.2rem;
    height: 1.2rem;
    opacity: 0.1;
}
.elissitlogo {
    position: relative;
    padding: 1.5rem;
    padding-bottom: 0.25rem;
    /* fill: #d6d6d6; */
    fill: #c0c6d2;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
}
.grid-el {
    text-align: center;
    font-size: 0.8rem;
    color: #4d505e;
    /* border: 1px solid red; */
}
.statement {
    font-size: 0.9rem;
    text-wrap: pretty;
    margin: 0.25rem 1rem 0rem 1rem;
    padding: 0.5rem;
    /* border: 1px solid black; */
    /* background-color: rgba(0, 0, 0, 0.235); */
}
.statement p {
    margin: 0;
}
.navigation{
    /* padding: 0.5rem; */
    /* background-color: rgba(0, 255, 110, 0.3); */
}
.experience, .simplified {
    margin: 0.5rem;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.3);
    clip-path: var(--clipcorner);
}
/* ------------------------------------------------ Buttons */
.button {
    position: relative;
    display: flex;
    flex-direction: row;
    /* text-align: center; */
    text-transform: uppercase;
    margin: 0;
    /* margin-bottom: 0.5rem; */
    box-shadow: 0 2px 10px black;
    background-image: linear-gradient(
    0deg,
    hsl(221deg 13% 43%) 0%,
    hsl(224deg 17% 73%) 100%
    );
    border-left: 6px solid #d1d3db;
    border-top: 1px solid #d9dded;
    border-bottom: 1px solid #bdc2d5;
    border-right: 1px solid #bdc2d5;
}
.button a {
    font-size: 0.8rem;
    width: 100%;
    height: 100%;
    padding: 1rem;
}
.button .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    padding: 0.35rem;
    border-right: 1px solid #d1d3db;
}
.button .icon svg{
    height: 61%;
    fill: #d1d3db;
}
.button::before {
    content: "";
    background-image: url("/images/svg/corner-gripper.svg");
    height: 2.25rem;
    width: 2.25rem;
    display: block;
    position: absolute;
    margin: 0.5rem;
    top: 0;
    right: 0;
    opacity: 0.4;
    user-select: none;
}
.button a:hover {
    background-image: linear-gradient(
    180deg,
    hsl(221deg 13% 35%) 0%,
    hsl(224deg 17% 60%) 100%
    );
    text-shadow: 1px 2px 3px #00000090;
    box-shadow: 0 2px 16px inset hsl(224deg 20% 12%);
}
.button:hover .icon, .button:hover #arrow {
    fill: var(--highlight);
    /* stroke: var(--highlight); */
    /* stroke-width: 1px ; */
    /* padding: 0.1rem; */
    background-color: var(--shading);
    background-image: linear-gradient(
        0deg,
        hsl(221deg 20% 22%) 50%,
        hsl(224deg 17% 38%) 100%
    );
}
.button:hover #arrow {
    /* fill: #ffffff; */
    animation: flicker 250ms infinite;
    /* animation: scalestrobe 1ms infinite; */
}
.button:hover #iconarrow {
    /* fill: #ffffff; */
    /* animation: flicker 500ms infinite; */
    animation: scalestrobe 1s infinite;
    /* animation: shiftstrobe 1s infinite; */
}
/* ------------------------------------------------ Features */
.features {
    font-family: var(--bodytxt);
    font-size: 0.8rem;
    line-height: 1rem;
    margin: 0;
    clip-path: var(--clipcorner);
}
.features .items {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    gap: 0.25rem;
}
.features .items div {
    padding: 0.25rem 0.25rem;
    /* background-color: rgba(0, 0, 0, 0.2); */
}
.features .items div:not(:last-child) {
    border-bottom: 1px dashed var(--shading);
}
/* ------------------------------------------------ Accordion */
.ac-label {
    /* font-size: 0.8rem; */
    position: relative;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    display: block;
    cursor: pointer;
    user-select: none;
    color: #aeaeae;
    background-color: rgba(0, 0, 0, 0.25);
    /* background-color: var(--tint-dark); */
    /* border-top: var(--borders); */
    border-left: 2px solid var(--shading);

    transition: background-color .15s ease-in-out;
}
.ac-label:after, .ac-input:checked + .ac-label:after {
    content: "+";
    font-size: 1.25rem;
    color: hsl(224deg 17% 73%);
    /* font-weight: bold; */
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 0;
    width: 2.75rem;
    height: 100%;
    transition: background-color 0.25s ease-in-out;
}
.ac-input:checked + label {
    color: var(--highlight);
}
.ac-input:hover + label {
    color: white;
}
.ac-input:checked + .ac-label:after {
    content: "-";
    color: var(--highlight);
}
.ac-input {
    display: none;
}
.ac-input:checked ~ .items { 
    /* opacity: 1; */
    max-height: 200px;
    transition: max-height 0.5s ease;
}
.items {
    /* opacity: 0; */
    max-height: 0px;
    /* background-color: var(--tint-dark); */
    overflow: hidden;
    /* border-bottom: var(--borders); */
    border-left: 2px solid var(--shading);
    transition: max-height 0.5s ease;
}
.items div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-items: center;
}
.items div img {
    /* filter: invert(100); */
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    background-color: rgba(0, 0, 0, 0.25);
}

.tcenter {
    text-align: center;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--textdim);
    animation: shiftstrobe 1s infinite;


}
.rotateCC90 {
    writing-mode: vertical-rl;
}
@media (min-width: 496px) {
    .logoBG {
        visibility: visible;
    }
}

@media (min-width: 430px) {
    /* #logoclip {
        width: 200px;
    } */
    .elissitlogo {
        /* position: relative; */
        padding: 2rem;
        padding-bottom: 0.5rem;
        /* z-index: 1; */
        /* background-color: #477eeb; */
    }
    .statement {
        font-size: 0.9rem;
        margin: 0.5rem 1rem 0.25rem 1rem;
        padding: 0.5rem;
    }
    .statement p {
        margin: 1rem 0;
    }
    .button a {
        font-size: 1rem;
    }
    .ac-label {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
}